changeset 62270:a5516bad2c77

(inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms back to defvars.
author Luc Teirlinck <teirllm@auburn.edu>
date Fri, 13 May 2005 02:28:52 +0000
parents 5a9bc4bb22a5
children 6cae229f309b
files lisp/progmodes/inf-lisp.el
diffstat 1 files changed, 4 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/inf-lisp.el	Fri May 13 02:25:35 2005 +0000
+++ b/lisp/progmodes/inf-lisp.el	Fri May 13 02:28:52 2005 +0000
@@ -214,10 +214,8 @@
 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 @@
 
 ;;; 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)