changeset 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 f11a3a49088c
children 2687f3d7c191
files lisp/custom.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
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.