* 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)
(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