# HG changeset patch # User Gerd Moellmann # Date 956832058 0 # Node ID f97e04a68f9fd4c04b417557ab5753bdd24eb1d9 # Parent 466ad2113a592196c3e8165b1671790ef29c8232 (add-minor-mode): Use `set' instead of `setq'. diff -r 466ad2113a59 -r f97e04a68f9f lisp/subr.el --- a/lisp/subr.el Wed Apr 26 18:50:09 2000 +0000 +++ b/lisp/subr.el Thu Apr 27 10:40:58 2000 +0000 @@ -1493,7 +1493,7 @@ string that will appear in the mode line when the minor mode is active. Optional MAP is the keymap for the minor mode." (make-local-variable symbol) - (setq symbol t) + (set symbol t) (unless (assq symbol minor-mode-alist) (add-to-list 'minor-mode-alist (list symbol name))) (when (and map (not (assq symbol minor-mode-map-alist)))