summaryrefslogtreecommitdiff
path: root/lisp/linum.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2008-08-26 20:50:01 +0000
committerChong Yidong <cyd@stupidchicken.com>2008-08-26 20:50:01 +0000
commit21259ba133e14bb2861a86793d8b2355e24cb259 (patch)
tree48790523cda898498e6be6623f0fbc10231fd297 /lisp/linum.el
parent4b4f3f827dd4498ce976343c60a7551cbcf41477 (diff)
downloademacs-21259ba133e14bb2861a86793d8b2355e24cb259.tar.gz
(linum): Inherit remaining face attributes from default face.
(linum-delay): Disable - it should no longer be necessary, and can lead to longer delays. (linum-update-window): Renumber if margin width has changed.
Diffstat (limited to 'lisp/linum.el')
-rw-r--r--lisp/linum.el51
1 files changed, 25 insertions, 26 deletions
diff --git a/lisp/linum.el b/lisp/linum.el
index 41fe2de1991..a88bb610d8c 100644
--- a/lisp/linum.el
+++ b/lisp/linum.el
@@ -30,7 +30,7 @@
;;; Code:
-(defconst linum-version "0.9wx")
+(defconst linum-version "0.9wz")
(defvar linum-overlays nil "Overlays used in this buffer.")
(defvar linum-available nil "Overlays available for reuse.")
@@ -54,7 +54,7 @@ See also `linum-before-numbering-hook'."
:type 'sexp)
(defface linum
- '((t :inherit shadow))
+ '((t :inherit (shadow default)))
"Face for displaying line numbers in the display margin."
:group 'linum)
@@ -65,7 +65,7 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
:group 'linum
:type 'boolean)
-(defcustom linum-delay t
+(defcustom linum-delay nil
"Delay updates to give Emacs a chance for other changes."
:group 'linum
:type 'boolean)
@@ -131,39 +131,38 @@ and you have to scroll or press \\[recenter-top-bottom] to update the numbers."
"Update line numbers for the portion visible in window WIN."
(goto-char (window-start win))
(let ((line (line-number-at-pos))
- (limit (1+ (window-end win t)))
+ (limit (window-end win t))
(fmt (cond ((stringp linum-format) linum-format)
((eq linum-format 'dynamic)
(let ((w (length (number-to-string
(count-lines (point-min) (point-max))))))
(concat "%" (number-to-string w) "d")))))
- (width 0)
- visited
- ov)
+ (width 0))
(run-hooks 'linum-before-numbering-hook)
;; Create an overlay (or reuse an existing one) for each
;; line visible in this window, if necessary.
- (while (and (not (eobp)) (< (point) limit))
- (setq visited nil)
- (dolist (o (overlays-in (point) (point)))
- (when (eq (overlay-get o 'linum-line) line)
- (unless (memq o linum-overlays)
- (push o linum-overlays))
- (setq linum-available (delete o linum-available))
- (setq visited t)))
- (let ((str (if fmt
- (propertize (format fmt line) 'face 'linum)
- (funcall linum-format line))))
+ (while (and (not (eobp)) (<= (point) limit))
+ (let* ((str (if fmt
+ (propertize (format fmt line) 'face 'linum)
+ (funcall linum-format line)))
+ (visited (catch 'visited
+ (dolist (o (overlays-in (point) (point)))
+ (when (string= (overlay-get o 'linum-str) str)
+ (unless (memq o linum-overlays)
+ (push o linum-overlays))
+ (setq linum-available (delete o linum-available))
+ (throw 'visited t))))))
(setq width (max width (length str)))
(unless visited
- (if (null linum-available)
- (setq ov (make-overlay (point) (point)))
- (setq ov (pop linum-available))
- (move-overlay ov (point) (point)))
- (push ov linum-overlays)
- (setq str (propertize " " 'display `((margin left-margin) ,str)))
- (overlay-put ov 'before-string str)
- (overlay-put ov 'linum-line line)))
+ (let (ov)
+ (if (null linum-available)
+ (setq ov (make-overlay (point) (point)))
+ (setq ov (pop linum-available))
+ (move-overlay ov (point) (point)))
+ (push ov linum-overlays)
+ (overlay-put ov 'before-string
+ (propertize " " 'display `((margin left-margin) ,str)))
+ (overlay-put ov 'linum-str str))))
(forward-line)
(setq line (1+ line)))
(set-window-margins win width)))