summaryrefslogtreecommitdiff
path: root/lisp/nxml/rng-xsd.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/nxml/rng-xsd.el')
-rw-r--r--lisp/nxml/rng-xsd.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/nxml/rng-xsd.el b/lisp/nxml/rng-xsd.el
index 266f8daac9e..b481039fdab 100644
--- a/lisp/nxml/rng-xsd.el
+++ b/lisp/nxml/rng-xsd.el
@@ -238,7 +238,7 @@ must be equal."
obj)))
(defun rng-xsd-check-pattern (str regexp convert &rest args)
- (and (string-match regexp str)
+ (and (let ((case-fold-search nil)) (string-match regexp str))
(apply convert (cons str args))))