]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid errors in redisplay--pre-redisplay-functions
authorEli Zaretskii <eliz@gnu.org>
Sat, 31 Oct 2015 13:31:17 +0000 (15:31 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 31 Oct 2015 13:31:17 +0000 (15:31 +0200)
* lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't
use 'bobp', instead compare window-point with 1.  (Bug#21730)

lisp/emacs-lisp/cursor-sensor.el

index 1d1780baed0df159dad486461621adccdff5b0fd..2fc7a0d15139a30ebbcda12fcd236bdba19ddb96 100644 (file)
            ;; 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))