unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#13718: [patch] prevents hl-line from overriding highlight-mode
@ 2013-02-15  4:28 Fei
  2013-02-15 15:26 ` Drew Adams
  2013-02-15 15:51 ` Stefan Monnier
  0 siblings, 2 replies; 9+ messages in thread
From: Fei @ 2013-02-15  4:28 UTC (permalink / raw)
  To: 13718

Hello,

I found that the overlays in highlight-mode do not override the
overlays from global-hl-line-mode, causing them to disappear on the
currently active line.  The solution I found was to edit hi-lock.el to
increase the priority of the overlay, as outlined in this patch:

--- hi-lock.el 2012-08-28 19:40:24.000000000 -0400
+++ hi-lock.el 2013-02-14 12:57:56.715031100 -0500
@@ -591,6 +591,7 @@
             (goto-char search-start)
             (while (re-search-forward regexp search-end t)
               (let ((overlay (make-overlay (match-beginning 0) (match-end 0))))
+                (overlay-put overlay 'priority 1)
                 (overlay-put overlay 'hi-lock-overlay t)
                 (overlay-put overlay 'hi-lock-overlay-regexp serial)
                 (overlay-put overlay 'face face))

My Emacs version is: 24.2.1 (i386-mingw-nt6.1.7601) 2012-08-28 on MARVIN

Thanks,
Fei





^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-02-16 18:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-15  4:28 bug#13718: [patch] prevents hl-line from overriding highlight-mode Fei
2013-02-15 15:26 ` Drew Adams
2013-02-15 15:51 ` Stefan Monnier
2013-02-15 16:15   ` Fei
2013-02-15 17:30     ` Stefan Monnier
2013-02-15 17:49       ` Fei
2013-02-16 18:43         ` Fei
2013-02-16 18:56           ` Drew Adams
2013-02-15 17:45   ` Drew Adams

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).