aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-03-02 12:17:28 +0000
committerDave Love2000-03-02 12:17:28 +0000
commit95bd92aa4e93bd6b129e75b57f1d7c6aa5dad224 (patch)
treed26132dcfc0aded34661627f9dafe4444a4904e5
parent54d04320020db375d0a69a3edb61f2101f91c54b (diff)
downloademacs-95bd92aa4e93bd6b129e75b57f1d7c6aa5dad224.tar.gz
emacs-95bd92aa4e93bd6b129e75b57f1d7c6aa5dad224.zip
(help-xref-go-back): Don't try to set position.
-rw-r--r--lisp/help.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index e88e1571fea..d0ca865a9de 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -1199,7 +1199,10 @@ help buffer."
1199 args (cddr item)) 1199 args (cddr item))
1200 (setq help-xref-stack (cdr help-xref-stack)))) 1200 (setq help-xref-stack (cdr help-xref-stack))))
1201 (apply method args) 1201 (apply method args)
1202 (goto-char position))) 1202 ;; We're not in the right buffer to do this, and we don't actually
1203 ;; know which we should be in.
1204 ;;(goto-char position)
1205 ))
1203 1206
1204(defun help-go-back () 1207(defun help-go-back ()
1205 "Invoke the [back] button (if any) in the Help mode buffer." 1208 "Invoke the [back] button (if any) in the Help mode buffer."