# HG changeset patch # User Carsten Dominik # Date 949658602 0 # Node ID 7f69a3b899d83050a16e22a24c71b63cbd152a2d # Parent 225cd305a20e44773e78a7f87820ef0e1a79e730 (reftex-with-special-syntax): Bind `case-fold-search' to nil. diff -r 225cd305a20e -r 7f69a3b899d8 lisp/textmodes/reftex-parse.el --- 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 -;; 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 ()