diff options
| author | Dan Nicolaescu | 2009-10-23 07:29:21 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-10-23 07:29:21 +0000 |
| commit | e0fcce78c005ec5164f7165589159d6be52e81a7 (patch) | |
| tree | 8a4ced114fc6a788bf3ad0432faa89300884c55c | |
| parent | 8f43cbf352348c20bb1560480a8545ee8c2d9442 (diff) | |
| download | emacs-e0fcce78c005ec5164f7165589159d6be52e81a7.tar.gz emacs-e0fcce78c005ec5164f7165589159d6be52e81a7.zip | |
* bindings.el (propertized-buffer-identification): Undo previous change.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/bindings.el | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0adff35c94b..12d6d3a0faa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -17,9 +17,6 @@ | |||
| 17 | * replace.el (occur-mode-map): | 17 | * replace.el (occur-mode-map): |
| 18 | * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips. | 18 | * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips. |
| 19 | 19 | ||
| 20 | * bindings.el (propertized-buffer-identification): Purecopy | ||
| 21 | tooltip text. | ||
| 22 | |||
| 23 | 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com> | 20 | 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com> |
| 24 | 21 | ||
| 25 | * calc/calc.el (math-read-number, math-read-number-simple): Use | 22 | * calc/calc.el (math-read-number, math-read-number-simple): Use |
diff --git a/lisp/bindings.el b/lisp/bindings.el index c1b07490c81..4bcd9a740ea 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -450,10 +450,10 @@ Keymap for what is displayed by `mode-line-buffer-identification'.") | |||
| 450 | "Return a list suitable for `mode-line-buffer-identification'. | 450 | "Return a list suitable for `mode-line-buffer-identification'. |
| 451 | FMT is a format specifier such as \"%12b\". This function adds | 451 | FMT is a format specifier such as \"%12b\". This function adds |
| 452 | text properties for face, help-echo, and local-map to it." | 452 | text properties for face, help-echo, and local-map to it." |
| 453 | `(list (propertize fmt | 453 | (list (propertize fmt |
| 454 | 'face 'mode-line-buffer-id | 454 | 'face 'mode-line-buffer-id |
| 455 | 'help-echo | 455 | 'help-echo |
| 456 | ,(purecopy "Buffer name\n\ | 456 | (purecopy "Buffer name\n\ |
| 457 | mouse-1: previous buffer\n\ | 457 | mouse-1: previous buffer\n\ |
| 458 | mouse-3: next buffer") | 458 | mouse-3: next buffer") |
| 459 | 'mouse-face 'mode-line-highlight | 459 | 'mouse-face 'mode-line-highlight |