]> git.eshelyaron.com Git - emacs.git/commitdiff
(mode-line-format): Modify it, don't override it entirely.
authorRichard M. Stallman <rms@gnu.org>
Fri, 10 Nov 1995 17:10:58 +0000 (17:10 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 10 Nov 1995 17:10:58 +0000 (17:10 +0000)
lisp/dos-fns.el

index 83918c88da6db2a97dea3023f60d0cbe6edd59bf..4f60325d0830a0b80d0666a8ac0c34c0eda5ee53 100644 (file)
 
 ;;; Code:
 
-(setq-default mode-line-format
-  (list (purecopy "")
-   'mode-line-modified
-   'mode-line-buffer-identification
-   (purecopy "   ")
-   'global-mode-string
-   (purecopy "   %[(")
-   (purecopy "%t:")
-   'mode-name 'mode-line-process 'minor-mode-alist
-   (purecopy "%n")
-   (purecopy ")%]--")
-   (purecopy '(line-number-mode "L%l--"))
-   (purecopy '(-3 . "%p"))
-   (purecopy "-%-")))
+;;; Add %t: into the mode line format just after the open-paren.
+(let ((tail (assoc "   %[(" mode-line-format)))
+  (setcdr tail (cons (purecopy "%t:")
+                    (cdr tail))))
 
 ;; Use ";" instead of ":" as a path separator (from files.el).
 (setq path-separator ";")