# HG changeset patch # User Richard M. Stallman # Date 863399994 0 # Node ID 01342565404eecd27e84a3d358d1f619b4475e35 # Parent f11a3a49088ccdc069f97965aa3bb72e1e70fd5a (defcustom): Get rid of eval-and-compile. The compiler should now handle custom-declare-variables on its own. diff -r f11a3a49088c -r 01342565404e lisp/custom.el --- 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.