From 9dfa30b59607cad29090f61da033a198f302e132 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 12 May 1997 01:19:54 +0000 Subject: [PATCH] (defcustom): Get rid of eval-and-compile. The compiler should now handle custom-declare-variables on its own. --- lisp/custom.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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.