diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-28 16:27:13 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-28 16:27:13 +0000 |
commit | f9475d97eec72a62b179f98eb086a406f6c44101 (patch) | |
tree | e2b00137e2764b059ab248ee22d2c5e60baa02b0 /lisp/emacs-lisp/lisp-mode.el | |
parent | 996f9cdebb49d38bd5b0718d1a0f9f2479ef077a (diff) | |
download | emacs-f9475d97eec72a62b179f98eb086a406f6c44101.tar.gz emacs-f9475d97eec72a62b179f98eb086a406f6c44101.tar.bz2 emacs-f9475d97eec72a62b179f98eb086a406f6c44101.zip |
(eval-defun-1): Make sure `defvar' always sets the default value.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index f181f3683f0..86c3ac1bab4 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -1,6 +1,6 @@ ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands -;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2003, 2004 +;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2003, 2004, 2005 ;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -602,7 +602,7 @@ Reinitialize the face according to the `defface' specification." (boundp (cadr form))) ;; Force variable to be re-set. `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form)) - (setq ,(nth 1 form) ,(nth 2 form)))) + (setq-default ,(nth 1 form) ,(nth 2 form)))) ;; `defcustom' is now macroexpanded to ;; `custom-declare-variable' with a quoted value arg. ((and (eq (car form) 'custom-declare-variable) |