From: Luc Teirlinck Date: Fri, 13 May 2005 02:28:52 +0000 (+0000) Subject: (inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms X-Git-Tag: ttn-vms-21-2-B4~362 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f64661897f7a2afa00de96f5d08f58ec567389b;p=emacs.git (inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms back to defvars. --- diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el index 083d87f581c..13bc7f08999 100644 --- a/lisp/progmodes/inf-lisp.el +++ b/lisp/progmodes/inf-lisp.el @@ -214,10 +214,8 @@ processes, you can change `inferior-lisp-buffer' to another process buffer with \\[set-variable].") ;;;###autoload -(defcustom inferior-lisp-mode-hook '() - "*Hook for customising Inferior Lisp mode." - :type 'hook - :group 'inferior-lisp) +(defvar inferior-lisp-mode-hook '() + "*Hook for customising Inferior Lisp mode.") (put 'inferior-lisp-mode 'mode-class 'special) @@ -590,10 +588,8 @@ See variable `lisp-describe-sym-command'." ;;; Do the user's customisation... ;;;=============================== -(defcustom inferior-lisp-load-hook nil - "This hook is run when the library `inf-lisp' is loaded." - :type 'hook - :group 'inferior-lisp) +(defvar inferior-lisp-load-hook nil + "This hook is run when the library `inf-lisp' is loaded.") (run-hooks 'inferior-lisp-load-hook)