compare strings with `equal-including-properties'.
+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.
(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