diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-10-30 00:15:06 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-10-30 00:15:06 +0000 |
commit | fc8c78cccd54ba33cccc2c663ba35825a8a06c63 (patch) | |
tree | f3a832cd8eb9170a185843a6ed9609e554a28ed3 /lisp | |
parent | 28d5d98ba5009e4835998bc66a3003253b74554a (diff) | |
download | emacs-fc8c78cccd54ba33cccc2c663ba35825a8a06c63.tar.gz |
(follow-unload-function): Add docstring.
(follow-unload-function): Remove variable.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/follow.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/follow.el b/lisp/follow.el index 2ea4466ea05..7e175e70230 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -2244,6 +2244,7 @@ This prevents `mouse-drag-region' from messing things up." ;;{{{ The end (defun follow-unload-function () + "Unload Follow mode library." (follow-stop-intercept-process-output) (dolist (group '((before ;; XEmacs @@ -2269,10 +2270,9 @@ This prevents `mouse-drag-region' from messing things up." (intern (concat "follow-" (symbol-name fun)))) (ad-update fun)) (error nil)))))) + ;; continue standard processing nil) -(defvar follow-unload-function 'follow-unload-function) - ;; ;; We're done! ;; |