Mercurial > emacs
changeset 27603:37b7d4f540f1
(reftex-change-label): add `A-Z' to char class in regexp.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 04 Feb 2000 10:04:00 +0000 |
parents | 7f69a3b899d8 |
children | 0b645a4a64fa |
files | lisp/textmodes/reftex-global.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/reftex-global.el Fri Feb 04 10:03:22 2000 +0000 +++ b/lisp/textmodes/reftex-global.el Fri Feb 04 10:04:00 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. @@ -169,7 +169,7 @@ (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 ()