summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-11-06 19:03:53 +0000
committerRichard M. Stallman <rms@gnu.org>1996-11-06 19:03:53 +0000
commit43ffa2505bb606c7c9d03b4228ca79913c7590b8 (patch)
treee084e5a1e7aa33e8ca1234748b023499fa8ac4fa
parentc9a236cd91dd6c323c63183c4e518d324528b5dc (diff)
downloademacs-43ffa2505bb606c7c9d03b4228ca79913c7590b8.tar.gz
(minor-mode-alist): Don't use purecopy.
-rw-r--r--lisp/bindings.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 31769839eaf..44d70bf143f 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -90,12 +90,12 @@ STRING is included in the mode line iff VARIABLE's value is non-nil.
Actually, STRING need not be a string; any possible mode-line element
is okay. See `mode-line-format'.")
-(setq minor-mode-alist (mapcar 'purecopy
- '((abbrev-mode " Abbrev")
- (overwrite-mode overwrite-mode)
- (auto-fill-function " Fill")
- ;; not really a minor mode...
- (defining-kbd-macro " Def"))))
+;; Don't use purecopy here--some people want to change these strings.
+(setq minor-mode-alist '((abbrev-mode " Abbrev")
+ (overwrite-mode overwrite-mode)
+ (auto-fill-function " Fill")
+ ;; not really a minor mode...
+ (defining-kbd-macro " Def")))
;; These variables are used by autoloadable packages.
;; They are defined here so that they do not get overridden