diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-23 05:15:26 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-23 05:15:26 +0000 |
commit | 8f43cbf352348c20bb1560480a8545ee8c2d9442 (patch) | |
tree | b5e40b9619484a3792f332c958d802b29f2b185e /lisp/bindings.el | |
parent | 1d228a31c34f8194420631c5116fc7cea4d4ec37 (diff) | |
download | emacs-8f43cbf352348c20bb1560480a8545ee8c2d9442.tar.gz |
* puresize.h (BASE_PURESIZE): Increase to 1430000.
* term/tty-colors.el (msdos-color-values): Remove declaration, unused.
(color-name-rgb-alist, tty-standard-colors)
(tty-color-mode-alist): Change to defconst.
* simple.el (mark-inactive): Purecopy message.
* menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
(global-map, yank-menu):
* textmodes/ispell.el (ispell-menu-map):
* net/eudc.el (eudc-tools-menu):
* international/mule-cmds.el (describe-language-environment-map)
(setup-language-environment-map, set-coding-system-map)
(mule-menu-keymap):
* vc-hooks.el (vc-menu-entry, vc-menu-map):
* replace.el (occur-mode-map):
* pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
* bindings.el (propertized-buffer-identification): Purecopy
tooltip text.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 4bcd9a740ea..c1b07490c81 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -450,10 +450,10 @@ Keymap for what is displayed by `mode-line-buffer-identification'.") "Return a list suitable for `mode-line-buffer-identification'. FMT is a format specifier such as \"%12b\". This function adds text properties for face, help-echo, and local-map to it." - (list (propertize fmt + `(list (propertize fmt 'face 'mode-line-buffer-id 'help-echo - (purecopy "Buffer name\n\ + ,(purecopy "Buffer name\n\ mouse-1: previous buffer\n\ mouse-3: next buffer") 'mouse-face 'mode-line-highlight |