From: Richard M. Stallman Date: Wed, 6 Nov 1996 19:03:53 +0000 (+0000) Subject: (minor-mode-alist): Don't use purecopy. X-Git-Tag: emacs-20.1~3421 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2fa5888149f36487203f542b57fb69058b610c4b;p=emacs.git (minor-mode-alist): Don't use purecopy. --- 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