From 5f68f6e85a9c3b1dc57aae89d6b13f9668ec259f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 27 Apr 2000 10:40:58 +0000 Subject: [PATCH] (add-minor-mode): Use `set' instead of `setq'. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/subr.el b/lisp/subr.el index e8ba1afe5e5..ebaaaf4d1fd 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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))) -- 2.39.5