diff options
Diffstat (limited to 'lisp/cedet/semantic/idle.el')
-rw-r--r-- | lisp/cedet/semantic/idle.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/idle.el b/lisp/cedet/semantic/idle.el index 1afb1d841dd..2d6f26919d7 100644 --- a/lisp/cedet/semantic/idle.el +++ b/lisp/cedet/semantic/idle.el @@ -818,13 +818,13 @@ visible, then highlight it." (goto-char (overlay-start region)) (when (pos-visible-in-window-p (point) (get-buffer-window (current-buffer) 'visible)) - (if (< (overlay-end region) (point-at-eol)) + (if (< (overlay-end region) (line-end-position)) (pulse-momentary-highlight-overlay region semantic-idle-symbol-highlight-face) ;; Not the same (pulse-momentary-highlight-region (overlay-start region) - (point-at-eol) + (line-end-position) semantic-idle-symbol-highlight-face)))) )) ((vectorp region) @@ -843,8 +843,8 @@ visible, then highlight it." end t) ;; This is likely it, give it a try. (pulse-momentary-highlight-region - start (if (<= end (point-at-eol)) end - (point-at-eol)) + start (if (<= end (line-end-position)) end + (line-end-position)) semantic-idle-symbol-highlight-face))) )))) nil)) |