summaryrefslogtreecommitdiff
path: root/lisp/progmodes/inf-lisp.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-05-13 02:28:52 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-05-13 02:28:52 +0000
commit0f64661897f7a2afa00de96f5d08f58ec567389b (patch)
treecaf196fea86f651f7e6f858579ed589b42c1a79c /lisp/progmodes/inf-lisp.el
parent0de01c281a54b9d36ed6612f1730568fecdeaf13 (diff)
downloademacs-0f64661897f7a2afa00de96f5d08f58ec567389b.tar.gz
(inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms
back to defvars.
Diffstat (limited to 'lisp/progmodes/inf-lisp.el')
-rw-r--r--lisp/progmodes/inf-lisp.el12
1 files 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)