summaryrefslogtreecommitdiff
path: root/lisp/linum.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-11-24 22:28:01 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-11-24 22:28:01 +0000
commitd204c46c611f765886f1079d1a93865ba2beacbb (patch)
tree492f1c64586578e7d5be5c16f5de6099413d78c6 /lisp/linum.el
parent449c27f045b0b49f3edf2cf3f598d4d1879850fb (diff)
downloademacs-d204c46c611f765886f1079d1a93865ba2beacbb.tar.gz
(linum-update-window): Ignore intangible (bug#4996).
Diffstat (limited to 'lisp/linum.el')
-rw-r--r--lisp/linum.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/linum.el b/lisp/linum.el
index 81b48e99067..a73003b4570 100644
--- a/lisp/linum.el
+++ b/lisp/linum.el
@@ -166,7 +166,10 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
(overlay-put ov 'before-string
(propertize " " 'display `((margin left-margin) ,str)))
(overlay-put ov 'linum-str str))))
- (forward-line)
+ ;; Text may contain those nasty intangible properties, but that
+ ;; shouldn't prevent us from counting those lines.
+ (let ((inhibit-point-motion-hooks t))
+ (forward-line))
(setq line (1+ line)))
(set-window-margins win width (cdr (window-margins win)))))