bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#20072: Incorrect popup showing


From: Nikolay Puzanov
Subject: bug#20072: Incorrect popup showing
Date: Tue, 10 Mar 2015 10:48:38 +0000

Hi,

I found bug on display a popup window from auto-complete-mode. I attach two screenshot and init.el. Bug appear when global-linum-mode is on.

Commit e589765 bring this bug. I changed the line that seemed most appropriate. I not understand how it work, but this patch fix it:

--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -3434,6 +3434,7 @@ handle_stop (struct it *it)
   it->dpvec = NULL;
   it->current.dpvec_index = -1;
   handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
+  it->ignore_overlay_strings_at_pos_p = false;
   it->ellipsis_p = 0;
 
   /* Use face of preceding text for ellipsis (if invisible) */

Note, this patch do not break fix by e589765 (http://lists.gnu.org/archive/html/bug-gnu-emacs/2015-02/msg00075.html).

Screenshots also uploaded to the external server:
http://www.embddr.com/emacs-popup-good.png
http://www.embddr.com/emacs-popup-bad.png

Init.el:
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
(package-initialize)

(require 'auto-complete-config)
(auto-complete-mode t)
(ac-config-default)

(global-linum-mode t)


Nikolay Puzanov.

Attachment: emacs-popup-bad.png
Description: PNG image

Attachment: emacs-popup-good.png
Description: PNG image

Attachment: init.el
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]