]> git.eshelyaron.com Git - emacs.git/commitdiff
* info.el (Info-index-next): Decrement line number by 2. (Bug#5652)
authorJuri Linkov <juri@jurta.org>
Tue, 2 Mar 2010 21:15:46 +0000 (23:15 +0200)
committerJuri Linkov <juri@jurta.org>
Tue, 2 Mar 2010 21:15:46 +0000 (23:15 +0200)
lisp/ChangeLog
lisp/info.el

index 7beebd130b11a1fc08854558328d21afa06ad3d5..607154f9c3c5807959bd311d33417b0bb79bee8b 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-02  Juri Linkov  <juri@jurta.org>
+
+       * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
+
 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
index 93001496b5c024a056405ecf292233b686fc2fcb..690fa4ff8e05e8f5e0c993c36892ee5a2e671511 100644 (file)
@@ -3062,7 +3062,7 @@ Give an empty topic name to go to the Index node itself."
          num (1- num)))
   (Info-goto-node (nth 1 (car Info-index-alternatives)))
   (if (> (nth 3 (car Info-index-alternatives)) 0)
-      (forward-line (1- (nth 3 (car Info-index-alternatives))))
+      (forward-line (- (nth 3 (car Info-index-alternatives)) 2))
     (forward-line 3)                   ; don't search in headers
     (let ((name (car (car Info-index-alternatives))))
       (Info-find-index-name name)))