aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinicius Jose Latorre2004-02-28 21:37:17 +0000
committerVinicius Jose Latorre2004-02-28 21:37:17 +0000
commit7fd08a0ae7c6402dd0aea30024ac2ef2a9e4caff (patch)
treec5a54dbfd2caa1119a68e15a5b0568f1764ef2ff
parent97818b07c3c4ec2b2eea6b7438504ecefc102872 (diff)
downloademacs-7fd08a0ae7c6402dd0aea30024ac2ef2a9e4caff.tar.gz
emacs-7fd08a0ae7c6402dd0aea30024ac2ef2a9e4caff.zip
Doc fix.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/ebnf-abn.el4
-rw-r--r--lisp/progmodes/ebnf2ps.el9
3 files changed, 12 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 90e4e34f84d..1b430272184 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,6 +8,9 @@
8 8
9 * ebnf-abn.el: Doc fix. 9 * ebnf-abn.el: Doc fix.
10 10
11 * ebnf-bnf.el: Doc fix.
12 (ebnf-repeat): Code fix.
13
11 * ebnf2ps.el: Doc fix. 14 * ebnf2ps.el: Doc fix.
12 15
132004-02-28 Juri Linkov <juri@jurta.org> 162004-02-28 Juri Linkov <juri@jurta.org>
diff --git a/lisp/progmodes/ebnf-abn.el b/lisp/progmodes/ebnf-abn.el
index ec96109e0a0..9c341c5181c 100644
--- a/lisp/progmodes/ebnf-abn.el
+++ b/lisp/progmodes/ebnf-abn.el
@@ -4,7 +4,7 @@
4 4
5;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> 5;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
6;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> 6;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7;; Time-stamp: <2004/02/23 22:38:59 vinicius> 7;; Time-stamp: <2004/02/28 17:40:41 vinicius>
8;; Keywords: wp, ebnf, PostScript 8;; Keywords: wp, ebnf, PostScript
9;; Version: 1.0 9;; Version: 1.0
10 10
@@ -41,6 +41,8 @@
41;; ----------- 41;; -----------
42;; 42;;
43;; See the URL: 43;; See the URL:
44;; `http://www.ietf.org/rfc/rfc2234.txt'
45;; or
44;; `http://www.faqs.org/rfcs/rfc2234.html' 46;; `http://www.faqs.org/rfcs/rfc2234.html'
45;; or 47;; or
46;; `http://www.rnp.br/ietf/rfc/rfc2234.txt' 48;; `http://www.rnp.br/ietf/rfc/rfc2234.txt'
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el
index c263c9282d3..69a85e0d1b3 100644
--- a/lisp/progmodes/ebnf2ps.el
+++ b/lisp/progmodes/ebnf2ps.el
@@ -5,7 +5,7 @@
5 5
6;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> 6;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> 7;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
8;; Time-stamp: <2004/02/28 17:58:16 vinicius> 8;; Time-stamp: <2004/02/28 18:19:37 vinicius>
9;; Keywords: wp, ebnf, PostScript 9;; Keywords: wp, ebnf, PostScript
10;; Version: 4.0 10;; Version: 4.0
11;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ 11;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
@@ -193,7 +193,10 @@ Please send all bug fixes and enhancements to
193;; C D sequence (C occurs before D) 193;; C D sequence (C occurs before D)
194;; C | D alternative (C or D occurs) 194;; C | D alternative (C or D occurs)
195;; A - B exception (A excluding B, B without any non-terminal) 195;; A - B exception (A excluding B, B without any non-terminal)
196;; n * A repetition (A repeats n (integer) times) 196;; n * A repetition (A repeats at least n (integer) times)
197;; n * n A repetition (A repeats exactly n (integer) times)
198;; n * m A repetition (A repeats at least n (integer) and at most
199;; m (integer) times)
197;; (C) group (expression C is grouped together) 200;; (C) group (expression C is grouped together)
198;; [C] optional (C may or not occurs) 201;; [C] optional (C may or not occurs)
199;; C+ one or more occurrences of C 202;; C+ one or more occurrences of C
@@ -217,7 +220,7 @@ Please send all bug fixes and enhancements to
217;; 220;;
218;; exception = repeat [ "-" repeat]. ;; exception 221;; exception = repeat [ "-" repeat]. ;; exception
219;; 222;;
220;; repeat = [ integer "*" ] term. ;; repetition 223;; repeat = [ integer "*" [ integer ]] term. ;; repetition
221;; 224;;
222;; term = factor 225;; term = factor
223;; | [factor] "+" ;; one-or-more 226;; | [factor] "+" ;; one-or-more