diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2015-10-31 14:42:28 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2015-10-31 14:42:28 +0100 |
commit | 65a3808fcf0afbd90d3ae512ff1ae4395bb2ee69 (patch) | |
tree | e71e092e1d19a6575003770abd3dea981fa47e27 | |
parent | 547a23469a20b7fa90c9a3554b8f7fb58fe100ab (diff) | |
parent | 553d7e9b384b9c9a8500c5229e1dbc76002d5a10 (diff) |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-rw-r--r-- | lisp/emacs-lisp/cursor-sensor.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cursor-sensor.el b/lisp/emacs-lisp/cursor-sensor.el index 1d1780baed..2fc7a0d151 100644 --- a/lisp/emacs-lisp/cursor-sensor.el +++ b/lisp/emacs-lisp/cursor-sensor.el @@ -113,7 +113,7 @@ ;; non-sticky on both ends, but that means get-pos-property might ;; never see it. (new (or (get-char-property point 'cursor-sensor-functions) - (unless (bobp) + (unless (= point 1) (get-char-property (1- point) 'cursor-sensor-functions)))) (old (window-parameter window 'cursor-sensor--last-state)) (oldposmark (car old)) |