aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-01-16 18:20:00 +0000
committerRichard M. Stallman2004-01-16 18:20:00 +0000
commit7a21fef9ecbd83d96b9f1410488915ff804bc943 (patch)
treef774fa95707e484ba723cfcadb8a7a9e6b93986e
parenta633a9544b7099c7ec6dc53182d830571bf1a442 (diff)
downloademacs-7a21fef9ecbd83d96b9f1410488915ff804bc943.tar.gz
emacs-7a21fef9ecbd83d96b9f1410488915ff804bc943.zip
(cl-cannot-unload): New function.
(cl-unload-hook): Defvar this to run cl-cannot-unload.
-rw-r--r--lisp/emacs-lisp/cl.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index b8d9cd5e80c..b098a467f9f 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -108,6 +108,10 @@ printer proceeds to the next function on the list.
108This variable is not used at present, but it is defined in hopes that 108This variable is not used at present, but it is defined in hopes that
109a future Emacs interpreter will be able to use it.") 109a future Emacs interpreter will be able to use it.")
110 110
111(defvar cl-unload-hook '(cl-cannot-unload)
112 "Prevent unloading the feature `cl', since it does not work.")
113(defun cl-cannot-unload ()
114 (error "Cannot unload the feature `cl'"))
111 115
112;;; Predicates. 116;;; Predicates.
113 117