# HG changeset patch # User Chong Yidong # Date 1266757867 18000 # Node ID f49497a70cf63a80619f1e99176442a69fe28126 # Parent 5cec35cc882b3d205e8e2b05c06e4785fc7160da * startup.el (fancy-about-screen): In mode-line, apply mode-line-buffer-id face only to the buffer name (Bug#5613). diff -r 5cec35cc882b -r f49497a70cf6 lisp/ChangeLog --- a/lisp/ChangeLog Sat Feb 20 09:11:20 2010 -0500 +++ b/lisp/ChangeLog Sun Feb 21 08:11:07 2010 -0500 @@ -1,3 +1,8 @@ +2010-02-21 Chong Yidong + + * startup.el (fancy-about-screen): In mode-line, apply + mode-line-buffer-id face only to the buffer name (Bug#5613). + 2010-02-20 Kevin Ryde * progmodes/compile.el (compilation-error-regexp-alist-alist): In diff -r 5cec35cc882b -r f49497a70cf6 lisp/startup.el --- a/lisp/startup.el Sat Feb 20 09:11:20 2010 -0500 +++ b/lisp/startup.el Sun Feb 21 08:11:07 2010 -0500 @@ -1626,8 +1626,10 @@ (select-frame frame) (switch-to-buffer "*About GNU Emacs*") (setq buffer-undo-list t - mode-line-format (propertize "---- %b %-" - 'face 'mode-line-buffer-id)) + mode-line-format + (concat "----" + (propertize "%b" 'face 'mode-line-buffer-id) + "%-")) (let ((inhibit-read-only t)) (erase-buffer) (if pure-space-overflow