From 2fa5888149f36487203f542b57fb69058b610c4b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 6 Nov 1996 19:03:53 +0000 Subject: [PATCH] (minor-mode-alist): Don't use purecopy. --- lisp/bindings.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/bindings.el b/lisp/bindings.el index 31769839ea..44d70bf143 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 -- 2.20.1