]> git.eshelyaron.com Git - emacs.git/commitdiff
(ruler-mode): Prevent clobbering the original `header-line-format'
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 23 Jun 2007 10:19:39 +0000 (10:19 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 23 Jun 2007 10:19:39 +0000 (10:19 +0000)
when reentering ruler mode.

lisp/ruler-mode.el

index b2c48349a058d0425a0a967a1fafc943fc05b4ab..13895aea2eb2387736fa4c190cf723ef90ef3503 100644 (file)
@@ -29,7 +29,7 @@
 ;;; Commentary:
 
 ;; This library provides a minor mode to display a ruler in the header
-;; line.  It works only on Emacs 21.
+;; line.  It works from Emacs 21 onwards.
 ;;
 ;; You can use the mouse to change the `fill-column' `comment-column',
 ;; `goal-column', `window-margins' and `tab-stop-list' settings:
@@ -562,7 +562,8 @@ Call `ruler-mode-ruler-function' to compute the ruler value.")
       (progn
         ;; When `ruler-mode' is on save previous header line format
         ;; and install the ruler header line format.
-        (when (local-variable-p 'header-line-format)
+        (when (and (local-variable-p 'header-line-format)
+                  (not (local-variable-p 'ruler-mode-header-line-format-old)))
           (set (make-local-variable 'ruler-mode-header-line-format-old)
                header-line-format))
         (setq header-line-format ruler-mode-header-line-format)