]> git.eshelyaron.com Git - emacs.git/commitdiff
(reftex-change-label): add `A-Z' to char class in regexp.
authorCarsten Dominik <dominik@science.uva.nl>
Fri, 4 Feb 2000 10:04:00 +0000 (10:04 +0000)
committerCarsten Dominik <dominik@science.uva.nl>
Fri, 4 Feb 2000 10:04:00 +0000 (10:04 +0000)
lisp/textmodes/reftex-global.el

index a6d21e2ff6187644fdf306df077f21af46d6ca34..06c3be4e9516928998a4008189572d1136477bf1 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.
@@ -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 ()