]> git.eshelyaron.com Git - emacs.git/commitdiff
(add-minor-mode): Use `set' instead of `setq'.
authorGerd Moellmann <gerd@gnu.org>
Thu, 27 Apr 2000 10:40:58 +0000 (10:40 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 27 Apr 2000 10:40:58 +0000 (10:40 +0000)
lisp/subr.el

index e8ba1afe5e59d6265345ceb6b1dd181d98febcab..ebaaaf4d1fd9b3e0d8b46520e9b1d52edb448e9a 100644 (file)
@@ -1493,7 +1493,7 @@ or off to say whether the minor mode is active or not.  NAME is the
 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)))