From: Dave Love Date: Thu, 2 Mar 2000 12:17:28 +0000 (+0000) Subject: (help-xref-go-back): Don't try to set position. X-Git-Tag: emacs-pretest-21.0.90~4802 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=95bd92aa4e93bd6b129e75b57f1d7c6aa5dad224;p=emacs.git (help-xref-go-back): Don't try to set position. --- 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." args (cddr item)) (setq help-xref-stack (cdr help-xref-stack)))) (apply method args) - (goto-char position))) + ;; We're not in the right buffer to do this, and we don't actually + ;; know which we should be in. + ;;(goto-char position) + )) (defun help-go-back () "Invoke the [back] button (if any) in the Help mode buffer."