diff options
| author | (tiny change) Arash Esbati | 2015-12-04 21:13:11 +0100 |
|---|---|---|
| committer | Tassilo Horn | 2015-12-04 21:13:11 +0100 |
| commit | 15b050eca91bc1da879acf5fabdc7f7d9c326008 (patch) | |
| tree | b120459bd1ef204bc27fda7863ace57230675a7b | |
| parent | c2917b02bfe1a33a283540d9609ffdb215b11999 (diff) | |
| download | emacs-15b050eca91bc1da879acf5fabdc7f7d9c326008.tar.gz emacs-15b050eca91bc1da879acf5fabdc7f7d9c326008.zip | |
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
| -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." | |||
| 137 | ((stringp tag) tag) | 137 | ((stringp tag) tag) |
| 138 | ((integerp tag) | 138 | ((integerp tag) |
| 139 | (save-excursion | 139 | (save-excursion |
| 140 | (goto-char (match-end 1)) | 140 | (goto-char (match-end 0)) |
| 141 | (or (reftex-nth-arg tag (nth 6 entry)) "idx"))) | 141 | (or (reftex-nth-arg tag (nth 6 entry)) "idx"))) |
| 142 | (t "idx"))))) | 142 | (t "idx"))))) |
| 143 | 143 | ||