aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/ebnf2ps.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <[email protected]>2004-02-28 21:37:17 +0000
committerVinicius Jose Latorre <[email protected]>2004-02-28 21:37:17 +0000
commit7fd08a0ae7c6402dd0aea30024ac2ef2a9e4caff (patch)
treec5a54dbfd2caa1119a68e15a5b0568f1764ef2ff /lisp/progmodes/ebnf2ps.el
parent97818b07c3c4ec2b2eea6b7438504ecefc102872 (diff)
Doc fix.
Diffstat (limited to 'lisp/progmodes/ebnf2ps.el')
-rw-r--r--lisp/progmodes/ebnf2ps.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el
index c263c9282d..69a85e0d1b 100644
--- a/lisp/progmodes/ebnf2ps.el
+++ b/lisp/progmodes/ebnf2ps.el
@@ -5,7 +5,7 @@
;; Author: Vinicius Jose Latorre <[email protected]>
;; Maintainer: Vinicius Jose Latorre <[email protected]>
-;; 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