]> git.eshelyaron.com Git - emacs.git/commitdiff
(reftex-with-special-syntax): Bind `case-fold-search' to nil.
authorCarsten Dominik <dominik@science.uva.nl>
Fri, 4 Feb 2000 10:03:22 +0000 (10:03 +0000)
committerCarsten Dominik <dominik@science.uva.nl>
Fri, 4 Feb 2000 10:03:22 +0000 (10:03 +0000)
lisp/textmodes/reftex-parse.el

index 91c49f7c85d380a22537974cfc9f74555bbf971a..5d5ce76e419bc076fed902f9e5eea98d99bbe05d 100644 (file)
@@ -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 ()