diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2000-02-04 10:03:22 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2000-02-04 10:03:22 +0000 |
commit | ce1a4cb24a939b5eb287fd23f1d078cc46b9485e (patch) | |
tree | 528511db824697f1a50acf9f78f9c633adb1060d /lisp/textmodes/reftex-parse.el | |
parent | 46177d543694b9876b75c2708e1cd38fbfb1e16e (diff) | |
download | emacs-ce1a4cb24a939b5eb287fd23f1d078cc46b9485e.tar.gz |
(reftex-with-special-syntax): Bind `case-fold-search' to nil.
Diffstat (limited to 'lisp/textmodes/reftex-parse.el')
-rw-r--r-- | lisp/textmodes/reftex-parse.el | 5 |
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 @@ ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> -;; Version: 4.10 +;; Version: 4.11 ;; ;; This file is part of GNU Emacs. @@ -31,7 +31,8 @@ (unwind-protect (progn (set-syntax-table reftex-syntax-table) - ,@body) + (let ((case-fold-search nil)) + ,@body)) (set-syntax-table saved-syntax)))) (defun reftex-parse-one () |