mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
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
This commit is contained in:
parent
c2917b02bf
commit
15b050eca9
1 changed files with 1 additions and 1 deletions
|
|
@ -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")))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue