diff options
| author | Dan Nicolaescu | 2009-11-15 20:25:55 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-15 20:25:55 +0000 |
| commit | f8e65267070633b270e2edf46bd9b521168e5358 (patch) | |
| tree | 4605fd9df342ce58479bac9c052362a709f67561 | |
| parent | 7cce3c911d6ab7ae52f9e4570ffb303634c88dd9 (diff) | |
| download | emacs-f8e65267070633b270e2edf46bd9b521168e5358.tar.gz emacs-f8e65267070633b270e2edf46bd9b521168e5358.zip | |
(mode-line-buffer-identification): Do not purecopy.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/bindings.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1a2edac321d..c0860179da1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-11-15 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * bindings.el (mode-line-buffer-identification): Do not purecopy. | ||
| 4 | |||
| 1 | 2009-11-15 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-11-15 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * dired.el (dired-mode-map): Move encryption items to "Operate" | 7 | * dired.el (dired-mode-map): Move encryption items to "Operate" |
diff --git a/lisp/bindings.el b/lisp/bindings.el index fac02a9e899..c02980f04b2 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -459,7 +459,7 @@ mouse-3: next buffer") | |||
| 459 | 'mouse-face 'mode-line-highlight | 459 | 'mouse-face 'mode-line-highlight |
| 460 | 'local-map mode-line-buffer-identification-keymap))) | 460 | 'local-map mode-line-buffer-identification-keymap))) |
| 461 | 461 | ||
| 462 | (defvar mode-line-buffer-identification (propertized-buffer-identification (purecopy "%12b")) "\ | 462 | (defvar mode-line-buffer-identification (propertized-buffer-identification "%12b") "\ |
| 463 | Mode-line control for identifying the buffer being displayed. | 463 | Mode-line control for identifying the buffer being displayed. |
| 464 | Its default value is (\"%12b\") with some text properties added. | 464 | Its default value is (\"%12b\") with some text properties added. |
| 465 | Major modes that edit things other than ordinary files may change this | 465 | Major modes that edit things other than ordinary files may change this |