diff lisp/custom.el @ 17751:01342565404e

(defcustom): Get rid of eval-and-compile. The compiler should now handle custom-declare-variables on its own.
author Richard M. Stallman <rms@gnu.org>
date Mon, 12 May 1997 01:19:54 +0000
parents 1cc3913deaf8
children 0df9495348e7
line wrap: on
line diff
--- a/lisp/custom.el	Mon May 12 01:14:36 1997 +0000
+++ b/lisp/custom.el	Mon May 12 01:19:54 1997 +0000
@@ -185,8 +185,7 @@
 
 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.