diff options
| -rw-r--r-- | lisp/textmodes/reftex.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 9754d2b20ff..d46bd0dacdd 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -1496,7 +1496,8 @@ When DIE is non-nil, throw an error if file not found." | |||
| 1496 | (and n (setq conf-variable (nth n conf-variable))) | 1496 | (and n (setq conf-variable (nth n conf-variable))) |
| 1497 | (or (eq conf-variable t) | 1497 | (or (eq conf-variable t) |
| 1498 | (and (stringp conf-variable) | 1498 | (and (stringp conf-variable) |
| 1499 | (string-match (concat "[" conf-variable "]") typekey)))) | 1499 | (let ((case-fold-search nil)) |
| 1500 | (string-match (concat "[" conf-variable "]") typekey))))) | ||
| 1500 | 1501 | ||
| 1501 | (defun reftex-check-recursive-edit () | 1502 | (defun reftex-check-recursive-edit () |
| 1502 | ;; Check if we are already in a recursive edit. Abort with helpful | 1503 | ;; Check if we are already in a recursive edit. Abort with helpful |