Mercurial > emacs
diff lisp/progmodes/ebnf-abn.el @ 90133:4da4a09e8b1b
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-31
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 206-222)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 45-52)
- Update from CVS
- Update from CVS: texi Makefile.in CVS keyw cruft
- Update from CVS: ChangeLog tweaks
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 31 Mar 2005 09:58:14 +0000 |
parents | 68c22ea6027c 87f9bb9d3718 |
children | b7da78284d4c |
line wrap: on
line diff
--- a/lisp/progmodes/ebnf-abn.el Tue Mar 29 00:48:14 2005 +0000 +++ b/lisp/progmodes/ebnf-abn.el Thu Mar 31 09:58:14 2005 +0000 @@ -1,6 +1,6 @@ ;;; ebnf-abn.el --- parser for ABNF (Augmented BNF) -;; 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> @@ -518,7 +518,7 @@ 'end-of-input) ;; error ((eq token 'error) - (error "Illegal character")) + (error "Invalid character")) ;; end of rule ((eq token 'end-of-rule) 'end-of-rule) @@ -600,7 +600,7 @@ ((= (following-char) ?\n) t) (t - (error "Illegal character")) + (error "Invalid character")) ))