summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2009-01-18 01:45:34 +0000
committerJuanma Barranquero <lekktu@gmail.com>2009-01-18 01:45:34 +0000
commit0ca77a9234ff1555b69dcba48bc9a383c404c3ef (patch)
tree5ae2b82b59b4de011d7a15ce48820ae8e98022e8
parent377952e006da45c3ba6ef21b8adae22a4e91ae7f (diff)
downloademacs-0ca77a9234ff1555b69dcba48bc9a383c404c3ef.tar.gz
* linum.el (linum-update-window): Use `delq' instead of `delete';
compare strings with `equal-including-properties'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/linum.el5
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e7a847d8069..1ad284b5441 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-18 Markus Triska <markus.triska@gmx.at>
+
+ * linum.el (linum-update-window): Use `delq' instead of `delete';
+ compare strings with `equal-including-properties'.
+
2009-01-17 Glenn Morris <rgm@gnu.org>
* progmodes/cc-langs.el (declare-function): Add compatibility stub.
diff --git a/lisp/linum.el b/lisp/linum.el
index 655accdeb5a..2108431b474 100644
--- a/lisp/linum.el
+++ b/lisp/linum.el
@@ -146,10 +146,11 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
(funcall linum-format line)))
(visited (catch 'visited
(dolist (o (overlays-in (point) (point)))
- (when (string= (overlay-get o 'linum-str) str)
+ (when (equal-including-properties
+ (overlay-get o 'linum-str) str)
(unless (memq o linum-overlays)
(push o linum-overlays))
- (setq linum-available (delete o linum-available))
+ (setq linum-available (delq o linum-available))
(throw 'visited t))))))
(setq width (max width (length str)))
(unless visited