diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-11-08 16:43:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-11-08 16:43:00 +0000 |
commit | cb7de2e75971f44c270ed8c0bc92fccf34fdce2d (patch) | |
tree | fd1202e0465a7c5d662657b7b9820b9765738ccc | |
parent | 4331c31e9598335f377133749f5cb239daa972e5 (diff) | |
download | emacs-cb7de2e75971f44c270ed8c0bc92fccf34fdce2d.tar.gz emacs-cb7de2e75971f44c270ed8c0bc92fccf34fdce2d.tar.bz2 emacs-cb7de2e75971f44c270ed8c0bc92fccf34fdce2d.zip |
(Info-revert-find-node): Don't use beginning-of-buffer.
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 8aaf7755df2..baeec935ee7 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -657,10 +657,10 @@ is preserved, if possible." (equal old-nodename Info-current-node)) (progn ;; note goto-line is no good, we want to measure from point-min - (beginning-of-buffer) + (goto-char (point-min)) (forward-line wline) (set-window-start (selected-window) (point)) - (beginning-of-buffer) + (goto-char (point-min)) (forward-line pline) (move-to-column pcolumn)) ;; only add to the history when coming from a different file+node |