aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2010-02-21 08:11:07 -0500
committerChong Yidong2010-02-21 08:11:07 -0500
commitbb23f6e82467a9939b1ae4d1a2fb0a923838afee (patch)
tree39175d6ec012b4ec98340b1e3b037c839e722381
parentf9b84f9f4baeb658b57a0a92c3dee9df5b4ab028 (diff)
downloademacs-bb23f6e82467a9939b1ae4d1a2fb0a923838afee.tar.gz
emacs-bb23f6e82467a9939b1ae4d1a2fb0a923838afee.zip
* startup.el (fancy-about-screen): In mode-line, apply
mode-line-buffer-id face only to the buffer name (Bug#5613).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/startup.el6
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7dcf2300454..0e863bd8ce7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-02-21 Chong Yidong <cyd@stupidchicken.com>
2
3 * startup.el (fancy-about-screen): In mode-line, apply
4 mode-line-buffer-id face only to the buffer name (Bug#5613).
5
12010-02-20 Kevin Ryde <user42@zip.com.au> 62010-02-20 Kevin Ryde <user42@zip.com.au>
2 7
3 * progmodes/compile.el (compilation-error-regexp-alist-alist): In 8 * progmodes/compile.el (compilation-error-regexp-alist-alist): In
diff --git a/lisp/startup.el b/lisp/startup.el
index 129eb2e6093..87f1a00bd54 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1626,8 +1626,10 @@ splash screen in another window."
1626 (select-frame frame) 1626 (select-frame frame)
1627 (switch-to-buffer "*About GNU Emacs*") 1627 (switch-to-buffer "*About GNU Emacs*")
1628 (setq buffer-undo-list t 1628 (setq buffer-undo-list t
1629 mode-line-format (propertize "---- %b %-" 1629 mode-line-format
1630 'face 'mode-line-buffer-id)) 1630 (concat "----"
1631 (propertize "%b" 'face 'mode-line-buffer-id)
1632 "%-"))
1631 (let ((inhibit-read-only t)) 1633 (let ((inhibit-read-only t))
1632 (erase-buffer) 1634 (erase-buffer)
1633 (if pure-space-overflow 1635 (if pure-space-overflow