diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-01 16:55:48 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-01 16:55:48 +0200 |
commit | d8e741548cd5221d51536a0cbeabde2e4d925054 (patch) | |
tree | c814e18e113448748e1553b48f59a79388dc1cf2 /lisp/vc/ediff-help.el | |
parent | 4fbe0ef20d27887ce605c5af2f047a877fb977aa (diff) | |
download | emacs-d8e741548cd5221d51536a0cbeabde2e4d925054.tar.gz emacs-d8e741548cd5221d51536a0cbeabde2e4d925054.tar.bz2 emacs-d8e741548cd5221d51536a0cbeabde2e4d925054.zip |
Tweak mouse highlights in ediff-help
* lisp/vc/ediff-help.el (ediff-set-help-overlays): Only put the
mouse-face overlay on the actual commands (bug#5079). This avoids
a problem when you have very wide frames: The leading blank
portion of the buffer would get the mouse highlights.
Diffstat (limited to 'lisp/vc/ediff-help.el')
-rw-r--r-- | lisp/vc/ediff-help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/ediff-help.el b/lisp/vc/ediff-help.el index e8a76c0a755..0b127564743 100644 --- a/lisp/vc/ediff-help.el +++ b/lisp/vc/ediff-help.el @@ -163,7 +163,7 @@ the value of this variable and the variables `ediff-help-message-*' in (goto-char (point-min)) (let (overl beg end cmd) (while (re-search-forward " *\\([^ \t\n|]+\\||\\) +-[^|\n]+" nil 'noerror) - (setq beg (match-beginning 0) + (setq beg (match-beginning 1) end (match-end 0) cmd (buffer-substring (match-beginning 1) (match-end 1))) (setq overl (ediff-make-overlay beg end)) |