diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-14 02:01:35 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-14 02:01:35 +0000 |
commit | 2d0659ec81d7340085a2faaa227518745f0678b7 (patch) | |
tree | 1c9a292d8447dfe7f187532c4e6141391bb03e8c /lisp/bindings.el | |
parent | d499c5b950a2aa8d6af470e672821f927d6e50c5 (diff) | |
download | emacs-2d0659ec81d7340085a2faaa227518745f0678b7.tar.gz |
* bindings.el (mode-line-buffer-identification): Purecopy only the string.
* international/ccl.el (define-ccl-program): Do not purecopy the
docstring, defconst does it anyway.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 4fe12846028..fac02a9e899 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -459,7 +459,7 @@ mouse-3: next buffer") 'mouse-face 'mode-line-highlight 'local-map mode-line-buffer-identification-keymap))) -(defvar mode-line-buffer-identification (purecopy (propertized-buffer-identification "%12b")) "\ +(defvar mode-line-buffer-identification (propertized-buffer-identification (purecopy "%12b")) "\ Mode-line control for identifying the buffer being displayed. Its default value is (\"%12b\") with some text properties added. Major modes that edit things other than ordinary files may change this |