aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/reftex-parse.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/reftex-parse.el b/lisp/textmodes/reftex-parse.el
index 91c49f7c85d..5d5ce76e419 100644
--- a/lisp/textmodes/reftex-parse.el
+++ b/lisp/textmodes/reftex-parse.el
@@ -2,7 +2,7 @@
2;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. 2;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3 3
4;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> 4;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl>
5;; Version: 4.10 5;; Version: 4.11
6;; 6;;
7 7
8;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
@@ -31,7 +31,8 @@
31 (unwind-protect 31 (unwind-protect
32 (progn 32 (progn
33 (set-syntax-table reftex-syntax-table) 33 (set-syntax-table reftex-syntax-table)
34 ,@body) 34 (let ((case-fold-search nil))
35 ,@body))
35 (set-syntax-table saved-syntax)))) 36 (set-syntax-table saved-syntax))))
36 37
37(defun reftex-parse-one () 38(defun reftex-parse-one ()