diff options
| author | Michael Albinus | 2015-10-31 14:42:28 +0100 |
|---|---|---|
| committer | Michael Albinus | 2015-10-31 14:42:28 +0100 |
| commit | 65a3808fcf0afbd90d3ae512ff1ae4395bb2ee69 (patch) | |
| tree | e71e092e1d19a6575003770abd3dea981fa47e27 | |
| parent | 547a23469a20b7fa90c9a3554b8f7fb58fe100ab (diff) | |
| parent | 553d7e9b384b9c9a8500c5229e1dbc76002d5a10 (diff) | |
| download | emacs-65a3808fcf0afbd90d3ae512ff1ae4395bb2ee69.tar.gz emacs-65a3808fcf0afbd90d3ae512ff1ae4395bb2ee69.zip | |
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 1d1780baed0..2fc7a0d1513 100644 --- a/lisp/emacs-lisp/cursor-sensor.el +++ b/lisp/emacs-lisp/cursor-sensor.el | |||
| @@ -113,7 +113,7 @@ | |||
| 113 | ;; non-sticky on both ends, but that means get-pos-property might | 113 | ;; non-sticky on both ends, but that means get-pos-property might |
| 114 | ;; never see it. | 114 | ;; never see it. |
| 115 | (new (or (get-char-property point 'cursor-sensor-functions) | 115 | (new (or (get-char-property point 'cursor-sensor-functions) |
| 116 | (unless (bobp) | 116 | (unless (= point 1) |
| 117 | (get-char-property (1- point) 'cursor-sensor-functions)))) | 117 | (get-char-property (1- point) 'cursor-sensor-functions)))) |
| 118 | (old (window-parameter window 'cursor-sensor--last-state)) | 118 | (old (window-parameter window 'cursor-sensor--last-state)) |
| 119 | (oldposmark (car old)) | 119 | (oldposmark (car old)) |