]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix.
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Sat, 28 Feb 2004 21:37:17 +0000 (21:37 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Sat, 28 Feb 2004 21:37:17 +0000 (21:37 +0000)
lisp/ChangeLog
lisp/progmodes/ebnf-abn.el
lisp/progmodes/ebnf2ps.el

index 90e4e34f84d079ec6f1b75aa1e72f36a3fbcb44f..1b43027218453ae894ceb0d3bc54143f83725d9d 100644 (file)
@@ -8,6 +8,9 @@
 
        * ebnf-abn.el: Doc fix.
 
+       * ebnf-bnf.el: Doc fix.
+       (ebnf-repeat): Code fix.
+
        * ebnf2ps.el: Doc fix.
 
 2004-02-28  Juri Linkov  <juri@jurta.org>
index ec96109e0a0f8d5cb38f5da1aa136372e22c0fbf..9c341c5181ca6e5fe72d6d536a44535ad4d04951 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
-;; Time-stamp: <2004/02/23 22:38:59 vinicius>
+;; Time-stamp: <2004/02/28 17:40:41 vinicius>
 ;; Keywords: wp, ebnf, PostScript
 ;; Version: 1.0
 
@@ -41,6 +41,8 @@
 ;; -----------
 ;;
 ;;     See the URL:
+;;     `http://www.ietf.org/rfc/rfc2234.txt'
+;;     or
 ;;     `http://www.faqs.org/rfcs/rfc2234.html'
 ;;     or
 ;;     `http://www.rnp.br/ietf/rfc/rfc2234.txt'
index c263c9282d3aca952034c692f9ffecf347c2b4d6..69a85e0d1b38291e4f1baa25cfbd7d33de7b5d0a 100644 (file)
@@ -5,7 +5,7 @@
 
 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
-;; Time-stamp: <2004/02/28 17:58:16 vinicius>
+;; Time-stamp: <2004/02/28 18:19:37 vinicius>
 ;; Keywords: wp, ebnf, PostScript
 ;; Version: 4.0
 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
@@ -193,7 +193,10 @@ Please send all bug fixes and enhancements to
 ;;    C D              sequence (C occurs before D)
 ;;    C | D            alternative (C or D occurs)
 ;;    A - B            exception (A excluding B, B without any non-terminal)
-;;    n * A            repetition (A repeats n (integer) times)
+;;    n * A            repetition (A repeats at least n (integer) times)
+;;    n * n A          repetition (A repeats exactly n (integer) times)
+;;    n * m A          repetition (A repeats at least n (integer) and at most
+;;                     m (integer) times)
 ;;    (C)              group (expression C is grouped together)
 ;;    [C]              optional (C may or not occurs)
 ;;    C+               one or more occurrences of C
@@ -217,7 +220,7 @@ Please send all bug fixes and enhancements to
 ;;
 ;;    exception = repeat [ "-" repeat].         ;; exception
 ;;
-;;    repeat = [ integer "*" ] term.            ;; repetition
+;;    repeat = [ integer "*" [ integer ]] term. ;; repetition
 ;;
 ;;    term = factor
 ;;         | [factor] "+"                       ;; one-or-more