From 0f64661897f7a2afa00de96f5d08f58ec567389b Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Fri, 13 May 2005 02:28:52 +0000 Subject: [PATCH] (inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms back to defvars. --- lisp/progmodes/inf-lisp.el | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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) -- 2.39.5