]> git.eshelyaron.com Git - emacs.git/commitdiff
(follow-unload-function): Add docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 30 Oct 2007 00:15:06 +0000 (00:15 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 30 Oct 2007 00:15:06 +0000 (00:15 +0000)
(follow-unload-function): Remove variable.

lisp/follow.el

index 2ea4466ea05b986e0d79b734b6bdfe124954b673..7e175e70230d1e5bb46e6450a13402f151f474d6 100644 (file)
@@ -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!
 ;;