summaryrefslogtreecommitdiff
path: root/lisp/progmodes/ebnf-dtd.el
diff options
context:
space:
mode:
authorWerner LEMBERG <wl@gnu.org>2005-03-25 08:47:00 +0000
committerWerner LEMBERG <wl@gnu.org>2005-03-25 08:47:00 +0000
commiteac9c0efd68cdd7a65439bb3958da1db56391bc9 (patch)
tree4733654eeb256615e015effdfdcc9f013b633862 /lisp/progmodes/ebnf-dtd.el
parent9d03424549b3ac88a3bb8881f0dec3cc3bce586e (diff)
downloademacs-eac9c0efd68cdd7a65439bb3958da1db56391bc9.tar.gz
* progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el,
progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el, progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el, progmodes/sh-script.el, progmodes/xscheme.el: Replace `illegal' with `invalid'.
Diffstat (limited to 'lisp/progmodes/ebnf-dtd.el')
-rw-r--r--lisp/progmodes/ebnf-dtd.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/ebnf-dtd.el b/lisp/progmodes/ebnf-dtd.el
index 9a99f222cc8..621cf424463 100644
--- a/lisp/progmodes/ebnf-dtd.el
+++ b/lisp/progmodes/ebnf-dtd.el
@@ -1,6 +1,6 @@
;;; ebnf-dtd.el --- parser for DTD (Data Type Description for XML)
-;; Copyright (C) 2004 Free Sofware Foundation, Inc.
+;; Copyright (C) 2004, 2005 Free Sofware Foundation, Inc.
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
@@ -1181,7 +1181,7 @@ See documentation for variable `ebnf-dtd-lex'."
'end-of-input)
;; error
((eq token 'error)
- (error "Illegal character"))
+ (error "Invalid character"))
;; beginning of declaration:
;; <?name, <!ATTLIST, <!DOCTYPE, <!ELEMENT, <!ENTITY, <!NOTATION
((eq token 'less-than)
@@ -1322,7 +1322,7 @@ See documentation for variable `ebnf-dtd-lex'."
(forward-char 3)
t)
(t
- (error "Illegal character"))
+ (error "Invalid character"))
))