]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix wrong-type-argument integer-or-marker-p nil error
author(tiny change) Arash Esbati <esbati@gmx.de>
Fri, 4 Dec 2015 20:13:11 +0000 (21:13 +0100)
committerTassilo Horn <tsdh@gnu.org>
Fri, 4 Dec 2015 20:13:11 +0000 (21:13 +0100)
* lisp/textmodes/reftex-auc.el (reftex-what-index-tag):
Fix (wrong-type-argument integer-or-marker-p nil) error (bug#22077).

Copyright-paperwork-exempt: yes

lisp/textmodes/reftex-auc.el

index bbad065c4ba82329a09e3b6bd36895103c60ef99..151be592367f44d1c077741decbe8cfbfbf2e2c5 100644 (file)
@@ -137,7 +137,7 @@ argument identify one of multiple indices."
        ((stringp tag) tag)
        ((integerp tag)
         (save-excursion
-          (goto-char (match-end 1))
+          (goto-char (match-end 0))
           (or (reftex-nth-arg tag (nth 6 entry)) "idx")))
        (t "idx")))))