]> git.eshelyaron.com Git - emacs.git/commitdiff
(defcustom): Get rid of eval-and-compile.
authorRichard M. Stallman <rms@gnu.org>
Mon, 12 May 1997 01:19:54 +0000 (01:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 12 May 1997 01:19:54 +0000 (01:19 +0000)
The compiler should now handle custom-declare-variables on its own.

lisp/custom.el

index e7414b76e55a6377eb070872916c101a3b33996e..d49265d0c1251b787045652a325958e87ba3be60 100644 (file)
@@ -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.