diff options
author | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:47:00 +0000 |
---|---|---|
committer | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:47:00 +0000 |
commit | eac9c0efd68cdd7a65439bb3958da1db56391bc9 (patch) | |
tree | 4733654eeb256615e015effdfdcc9f013b633862 /lisp/progmodes/ebnf2ps.el | |
parent | 9d03424549b3ac88a3bb8881f0dec3cc3bce586e (diff) | |
download | emacs-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/ebnf2ps.el')
-rw-r--r-- | lisp/progmodes/ebnf2ps.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el index 1d2f8d630e1..1a680ffa077 100644 --- a/lisp/progmodes/ebnf2ps.el +++ b/lisp/progmodes/ebnf2ps.el @@ -1,6 +1,6 @@ ;;; ebnf2ps.el --- translate an EBNF to a syntactic chart on PostScript -;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 +;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 ;; Free Software Foundation, Inc. ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> @@ -5499,7 +5499,7 @@ killed after process termination." ;;(skip-chars-forward (concat chars "\240-\377") ebnf-limit) (skip-chars-forward (concat chars ebnf-8-bit-chars) ebnf-limit) (if (or (eobp) (/= (following-char) eos-char)) - (error "Illegal %s: missing `%c'" kind eos-char) + (error "Invalid %s: missing `%c'" kind eos-char) (forward-char) (1- (point)))))) |