emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/ebnf-abn.el


From: Werner LEMBERG
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/ebnf-abn.el
Date: Fri, 25 Mar 2005 03:47:04 -0500

Index: emacs/lisp/progmodes/ebnf-abn.el
diff -c emacs/lisp/progmodes/ebnf-abn.el:1.5 
emacs/lisp/progmodes/ebnf-abn.el:1.6
*** emacs/lisp/progmodes/ebnf-abn.el:1.5        Mon Apr  5 01:53:51 2004
--- emacs/lisp/progmodes/ebnf-abn.el    Fri Mar 25 08:47:00 2005
***************
*** 1,6 ****
  ;;; ebnf-abn.el --- parser for ABNF (Augmented BNF)
  
! ;; Copyright (C) 2004 Free Sofware Foundation, Inc.
  
  ;; Author: Vinicius Jose Latorre <address@hidden>
  ;; Maintainer: Vinicius Jose Latorre <address@hidden>
--- 1,6 ----
  ;;; ebnf-abn.el --- parser for ABNF (Augmented BNF)
  
! ;; Copyright (C) 2004, 2005 Free Sofware Foundation, Inc.
  
  ;; Author: Vinicius Jose Latorre <address@hidden>
  ;; Maintainer: Vinicius Jose Latorre <address@hidden>
***************
*** 518,524 ****
        'end-of-input)
         ;; error
         ((eq token 'error)
!       (error "Illegal character"))
         ;; end of rule
         ((eq token 'end-of-rule)
        'end-of-rule)
--- 518,524 ----
        'end-of-input)
         ;; error
         ((eq token 'error)
!       (error "Invalid character"))
         ;; end of rule
         ((eq token 'end-of-rule)
        'end-of-rule)
***************
*** 600,606 ****
        ((= (following-char) ?\n)
         t)
        (t
!        (error "Illegal character"))
        ))
  
  
--- 600,606 ----
        ((= (following-char) ?\n)
         t)
        (t
!        (error "Invalid character"))
        ))
  
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]