diff options
author | Werner LEMBERG <wl@gnu.org> | 2005-03-25 09:03:24 +0000 |
---|---|---|
committer | Werner LEMBERG <wl@gnu.org> | 2005-03-25 09:03:24 +0000 |
commit | 5181ff9f3d68ae3e1fe260430c1924fafa5b77c6 (patch) | |
tree | 91ddc9b4328b8db85c163bdcae16138b4a9baacf /lisp/textmodes/reftex-ref.el | |
parent | eac9c0efd68cdd7a65439bb3958da1db56391bc9 (diff) | |
download | emacs-5181ff9f3d68ae3e1fe260430c1924fafa5b77c6.tar.gz |
* textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el,
textmodes/reftex-index.el, textmodes/reftex-parse.el,
textmodes/reftex-ref.el, textmodes/reftex-vars.el,
textmodes/reftex.el, textmodes/org.el: Replace `illegal' with
`invalid'.
Diffstat (limited to 'lisp/textmodes/reftex-ref.el')
-rw-r--r-- | lisp/textmodes/reftex-ref.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex-ref.el b/lisp/textmodes/reftex-ref.el index 43095e2d684..6afbb77767c 100644 --- a/lisp/textmodes/reftex-ref.el +++ b/lisp/textmodes/reftex-ref.el @@ -1,5 +1,6 @@ ;;; reftex-ref.el --- code to create labels and references with RefTeX -;; Copyright (c) 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc. +;; Copyright (c) 1997, 1998, 1999, 2000, 2003, 2004, 2005 +;; Free Software Foundation, Inc. ;; Author: Carsten Dominik <dominik@science.uva.nl> ;; Version: 4.26 @@ -172,7 +173,7 @@ This function is controlled by the settings of reftex-insert-label-flags." (nth 2 (reftex-label-info " " nil nil t)))) ;; Catch the cases where the is actually no context available. (if (or (string-match "NO MATCH FOR CONTEXT REGEXP" default) - (string-match "ILLEGAL VALUE OF PARSE" default) + (string-match "INVALID VALUE OF PARSE" default) (string-match "SECTION HEADING NOT FOUND" default) (string-match "HOOK ERROR" default) (string-match "^[ \t]*$" default)) @@ -217,7 +218,7 @@ This function is controlled by the settings of reftex-insert-label-flags." ;; Test if label contains strange characters ((string-match reftex-label-illegal-re label) - (message "Label \"%s\" contains illegal characters" label) + (message "Label \"%s\" contains invalid characters" label) (ding) (sit-for 2)) |