# HG changeset patch # User Richard M. Stallman # Date 797396821 0 # Node ID 81ed366620c0a0c20d30b246038dc71ed0ed18de # Parent 5704f8216dbdd563be4b10163fc00fa864b12dcc (occur): Provide 5 cols for line number. diff -r 5704f8216dbd -r 81ed366620c0 lisp/replace.el --- a/lisp/replace.el Sat Apr 08 22:42:47 1995 +0000 +++ b/lisp/replace.el Sun Apr 09 03:07:01 1995 +0000 @@ -388,7 +388,7 @@ (forward-line (1+ nlines)) (forward-line 1)) (point))) - (tag (format "%3d" linenum)) + (tag (format "%5d" linenum)) (empty (make-string (length tag) ?\ )) tem) (save-excursion @@ -411,7 +411,7 @@ (+ (point) (- (match-end 0) (match-beginning 0)))) (while (< (point) final-context-start) (if (null tag) - (setq tag (format "%3d" this-linenum))) + (setq tag (format "%5d" this-linenum))) (insert tag ?:) (put-text-property (save-excursion (beginning-of-line)