diff options
author | (tiny change) Arash Esbati <esbati@gmx.de> | 2015-12-04 21:13:11 +0100 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2015-12-04 21:13:11 +0100 |
commit | 15b050eca91bc1da879acf5fabdc7f7d9c326008 (patch) | |
tree | b120459bd1ef204bc27fda7863ace57230675a7b /lisp/textmodes | |
parent | c2917b02bfe1a33a283540d9609ffdb215b11999 (diff) | |
download | emacs-15b050eca91bc1da879acf5fabdc7f7d9c326008.tar.gz |
Fix wrong-type-argument integer-or-marker-p nil error
* 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
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/reftex-auc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-auc.el b/lisp/textmodes/reftex-auc.el index bbad065c4ba..151be592367 100644 --- a/lisp/textmodes/reftex-auc.el +++ b/lisp/textmodes/reftex-auc.el @@ -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"))))) |