]> git.eshelyaron.com Git - emacs.git/commitdiff
Make a case-sensitive match for strings
authorArash Esbati <arash@gnu.org>
Fri, 11 Aug 2017 21:57:35 +0000 (23:57 +0200)
committerTassilo Horn <tsdh@gnu.org>
Sat, 12 Aug 2017 06:11:11 +0000 (08:11 +0200)
* lisp/textmodes/reftex.el (reftex-typekey-check): Temporarily
let-bind `case-fold-search' to nil in order to be case-sensitive
when matching a string.  (Bug#27518)

lisp/textmodes/reftex.el

index 9754d2b20ff6ee3745db5bc47c58c9b8c0d3d1af..d46bd0dacddaa0511b7c5b6e6c9a985c5d2143f4 100644 (file)
@@ -1496,7 +1496,8 @@ When DIE is non-nil, throw an error if file not found."
   (and n (setq conf-variable (nth n conf-variable)))
   (or (eq conf-variable t)
       (and (stringp conf-variable)
-           (string-match (concat "[" conf-variable "]") typekey))))
+           (let ((case-fold-search nil))
+             (string-match (concat "[" conf-variable "]") typekey)))))
 
 (defun reftex-check-recursive-edit ()
   ;; Check if we are already in a recursive edit.  Abort with helpful