From: Carsten Dominik Date: Fri, 4 Feb 2000 10:04:00 +0000 (+0000) Subject: (reftex-change-label): add `A-Z' to char class in regexp. X-Git-Tag: emacs-pretest-21.0.90~5102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e9f557f4426d3a525868aad5a7b8f84e71c58a7;p=emacs.git (reftex-change-label): add `A-Z' to char class in regexp. --- diff --git a/lisp/textmodes/reftex-global.el b/lisp/textmodes/reftex-global.el index a6d21e2ff61..06c3be4e951 100644 --- a/lisp/textmodes/reftex-global.el +++ b/lisp/textmodes/reftex-global.el @@ -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. @@ -169,7 +169,7 @@ No active TAGS table is required." (setq to (read-string (format "Replace label %s with: " from)))) (reftex-query-replace-document - (concat "\\\\\\(label\\|[a-z]*ref\\){" (regexp-quote from) "}") + (concat "\\\\\\(label\\|[a-zA-Z]*ref\\){" (regexp-quote from) "}") (format "\\\\\\1{%s}" to)))) (defun reftex-renumber-simple-labels ()