From: Richard M. Stallman Date: Mon, 12 May 1997 01:19:54 +0000 (+0000) Subject: (defcustom): Get rid of eval-and-compile. X-Git-Tag: emacs-20.1~2194 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9dfa30b59607cad29090f61da033a198f302e132;p=emacs.git (defcustom): Get rid of eval-and-compile. The compiler should now handle custom-declare-variables on its own. --- diff --git a/lisp/custom.el b/lisp/custom.el index e7414b76e55..d49265d0c12 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -185,8 +185,7 @@ The following KEYWORD's are defined: Read the section about customization in the Emacs Lisp manual for more information." - `(eval-and-compile - (custom-declare-variable (quote ,symbol) (quote ,value) ,doc ,@args))) + `(custom-declare-variable (quote ,symbol) (quote ,value) ,doc ,@args)) ;;; The `defface' Macro.