diff lisp/textmodes/reftex-parse.el @ 27602:7f69a3b899d8

(reftex-with-special-syntax): Bind `case-fold-search' to nil.
author Carsten Dominik <dominik@science.uva.nl>
date Fri, 04 Feb 2000 10:03:22 +0000
parents f70a80cecdd3
children 31536c6cf2e3
line wrap: on
line diff
--- a/lisp/textmodes/reftex-parse.el	Fri Feb 04 10:01:08 2000 +0000
+++ b/lisp/textmodes/reftex-parse.el	Fri Feb 04 10:03:22 2000 +0000
@@ -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 ()