Mercurial > emacs
annotate lisp/progmodes/ebnf2ps.el @ 59061:a7985894de81
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 21 Dec 2004 11:50:52 +0000 |
| parents | 6ae939127d99 |
| children | 87f9bb9d3718 f2ebccfa87d4 |
| rev | line source |
|---|---|
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1 ;;; ebnf2ps.el --- translate an EBNF to a syntactic chart on PostScript |
| 27451 | 2 |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
|
58340
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
8 ;; Time-stamp: <2004/11/19 22:30:34 vinicius> |
|
39342
73061d0eb82e
Replace "Prologue" by "Prolog" in PostScript
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
9 ;; Keywords: wp, ebnf, PostScript |
| 54714 | 10 ;; Version: 4.2 |
|
39342
73061d0eb82e
Replace "Prologue" by "Prolog" in PostScript
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ |
| 27451 | 12 |
| 27539 | 13 ;; This file is part of GNU Emacs. |
| 14 | |
| 15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 16 ;; it under the terms of the GNU General Public License as published by | |
| 17 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 18 ;; any later version. | |
| 19 | |
| 20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 23 ;; GNU General Public License for more details. | |
| 24 | |
| 25 ;; You should have received a copy of the GNU General Public License | |
| 26 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 28 ;; Boston, MA 02111-1307, USA. | |
| 29 | |
| 54714 | 30 (defconst ebnf-version "4.2" |
| 31 "ebnf2ps.el, v 4.2 <2004/04/04 vinicius> | |
| 27451 | 32 |
| 33 Vinicius's last change version. When reporting bugs, please also | |
| 34 report the version of Emacs, if any, that ebnf2ps was running with. | |
| 35 | |
| 36 Please send all bug fixes and enhancements to | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
37 Vinicius Jose Latorre <viniciusjl@ig.com.br>. |
| 27451 | 38 ") |
| 39 | |
| 40 | |
| 41 ;;; Commentary: | |
| 42 | |
| 43 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 44 ;; | |
| 45 ;; Introduction | |
| 46 ;; ------------ | |
| 47 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
48 ;; This package translates an EBNF to a syntactic chart on PostScript. |
| 27451 | 49 ;; |
| 50 ;; To use ebnf2ps, insert in your ~/.emacs: | |
| 51 ;; | |
| 52 ;; (require 'ebnf2ps) | |
| 53 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
54 ;; ebnf2ps uses ps-print package (version 5.2.3 or later), so see ps-print to |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
55 ;; know how to set options like landscape printing, page headings, margins, |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
56 ;; etc. |
| 27451 | 57 ;; |
| 58 ;; NOTE: ps-print zebra stripes and line number options doesn't have effect on | |
| 59 ;; ebnf2ps, they behave as it's turned off. | |
| 60 ;; | |
| 61 ;; For good performance, be sure to byte-compile ebnf2ps.el, e.g. | |
| 62 ;; | |
| 63 ;; M-x byte-compile-file <give the path to ebnf2ps.el when prompted> | |
| 64 ;; | |
| 65 ;; This will generate ebnf2ps.elc, which will be loaded instead of ebnf2ps.el. | |
| 66 ;; | |
| 67 ;; ebnf2ps was tested with GNU Emacs 20.4.1. | |
| 68 ;; | |
| 69 ;; | |
| 70 ;; Using ebnf2ps | |
| 71 ;; ------------- | |
| 72 ;; | |
| 54197 | 73 ;; ebnf2ps provides the following commands for generating PostScript syntactic |
| 74 ;; chart images of Emacs buffers: | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
75 ;; |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
76 ;; ebnf-print-directory |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
77 ;; ebnf-print-file |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
78 ;; ebnf-print-buffer |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
79 ;; ebnf-print-region |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
80 ;; ebnf-spool-directory |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
81 ;; ebnf-spool-file |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
82 ;; ebnf-spool-buffer |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
83 ;; ebnf-spool-region |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
84 ;; ebnf-eps-directory |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
85 ;; ebnf-eps-file |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
86 ;; ebnf-eps-buffer |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
87 ;; ebnf-eps-region |
| 27451 | 88 ;; |
| 89 ;; These commands all perform essentially the same function: they generate | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
90 ;; PostScript syntactic chart images suitable for printing on a PostScript |
| 27451 | 91 ;; printer or displaying with GhostScript. These commands are collectively |
| 92 ;; referred to as "ebnf- commands". | |
| 93 ;; | |
| 94 ;; The word "print", "spool" and "eps" in the command name determines when the | |
| 95 ;; PostScript image is sent to the printer (or file): | |
| 96 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
97 ;; print - The PostScript image is immediately sent to the printer; |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
98 ;; |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
99 ;; spool - The PostScript image is saved temporarily in an Emacs buffer. |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
100 ;; Many images may be spooled locally before printing them. To |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
101 ;; send the spooled images to the printer, use the command |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
102 ;; `ebnf-despool'. |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
103 ;; |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
104 ;; eps - The PostScript image is immediately sent to a EPS file. |
| 27451 | 105 ;; |
| 106 ;; The spooling mechanism is the same as used by ps-print and was designed for | |
| 107 ;; printing lots of small files to save paper that would otherwise be wasted on | |
| 108 ;; banner pages, and to make it easier to find your output at the printer (it's | |
| 109 ;; easier to pick up one 50-page printout than to find 50 single-page | |
| 110 ;; printouts). As ebnf2ps and ps-print use the same Emacs buffer to spool | |
| 111 ;; images, you can intermix the spooling of ebnf2ps and ps-print images. | |
| 112 ;; | |
| 113 ;; ebnf2ps use the same hook of ps-print in the `kill-emacs-hook' so that you | |
| 114 ;; won't accidentally quit from Emacs while you have unprinted PostScript | |
| 115 ;; waiting in the spool buffer. If you do attempt to exit with spooled | |
| 116 ;; PostScript, you'll be asked if you want to print it, and if you decline, | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
117 ;; you'll be asked to confirm the exit; this is modeled on the confirmation |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
118 ;; that Emacs uses for modified buffers. |
| 27451 | 119 ;; |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
120 ;; The word "directory", "file", "buffer" or "region" in the command name |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
121 ;; determines how much of the buffer is printed: |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
122 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
123 ;; directory - Read files in the directory and print them. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
124 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
125 ;; file - Read file and print it. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
126 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
127 ;; buffer - Print the entire buffer. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
128 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
129 ;; region - Print just the current region. |
| 27451 | 130 ;; |
| 131 ;; Two ebnf- command examples: | |
| 132 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
133 ;; ebnf-print-buffer - translate and print the entire buffer, and send it |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
134 ;; immediately to the printer. |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
135 ;; |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
136 ;; ebnf-spool-region - translate and print just the current region, and |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
137 ;; spool the image in Emacs to send to the printer |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
138 ;; later. |
| 27451 | 139 ;; |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
140 ;; Note that `ebnf-eps-directory', `ebnf-eps-file', `ebnf-eps-buffer' and |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
141 ;; `ebnf-eps-region' never spool the EPS image, so they don't use the ps-print |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
142 ;; spooling mechanism. See section "Actions in Comments" for an explanation |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
143 ;; about EPS file generation. |
| 27451 | 144 ;; |
| 145 ;; | |
| 146 ;; Invoking Ebnf2ps | |
| 147 ;; ---------------- | |
| 148 ;; | |
| 149 ;; To translate and print your buffer, type | |
| 150 ;; | |
| 151 ;; M-x ebnf-print-buffer | |
| 152 ;; | |
| 153 ;; or substitute one of the other four ebnf- commands. The command will | |
| 154 ;; generate the PostScript image and print or spool it as specified. By giving | |
| 155 ;; the command a prefix argument | |
| 156 ;; | |
| 157 ;; C-u M-x ebnf-print-buffer | |
| 158 ;; | |
| 159 ;; it will save the PostScript image to a file instead of sending it to the | |
| 160 ;; printer; you will be prompted for the name of the file to save the image to. | |
| 161 ;; The prefix argument is ignored by the commands that spool their images, but | |
| 162 ;; you may save the spooled images to a file by giving a prefix argument to | |
| 163 ;; `ebnf-despool': | |
| 164 ;; | |
| 165 ;; C-u M-x ebnf-despool | |
| 166 ;; | |
| 167 ;; When invoked this way, `ebnf-despool' will prompt you for the name of the | |
| 168 ;; file to save to. | |
| 169 ;; | |
| 170 ;; The prefix argument is also ignored by `ebnf-eps-buffer' and | |
| 171 ;; `ebnf-eps-region'. | |
| 172 ;; | |
| 173 ;; Any of the `ebnf-' commands can be bound to keys. Here are some examples: | |
| 174 ;; | |
| 175 ;; (global-set-key 'f22 'ebnf-print-buffer) ;f22 is prsc | |
| 176 ;; (global-set-key '(shift f22) 'ebnf-print-region) | |
| 177 ;; (global-set-key '(control f22) 'ebnf-despool) | |
| 178 ;; | |
| 179 ;; | |
| 54714 | 180 ;; Invoking Ebnf2ps in Batch |
| 181 ;; ------------------------- | |
| 182 ;; | |
| 183 ;; It's possible also to run ebnf2ps in batch, this is useful when, for | |
| 184 ;; example, you have a directory with a lot of files containing the EBNF to be | |
| 185 ;; translated to PostScript. | |
| 186 ;; | |
| 187 ;; To run ebnf2ps in batch type, for example: | |
| 188 ;; | |
| 189 ;; emacs -batch -l setup-ebnf2ps.el -f ebnf-eps-directory | |
| 190 ;; | |
| 191 ;; Where setup-ebnf2ps.el should be a file containing: | |
| 192 ;; | |
| 193 ;; ;; set load-path if ebnf2ps isn't installed in your Emacs environment | |
| 194 ;; (setq load-path (append (list "/dir/of/ebnf2ps") load-path)) | |
| 195 ;; (require 'ebnf2ps) | |
| 196 ;; ;; insert here your ebnf2ps settings | |
| 197 ;; (setq ebnf-terminal-shape 'bevel) | |
| 198 ;; ;; etc. | |
| 199 ;; | |
| 200 ;; | |
| 27451 | 201 ;; EBNF Syntax |
| 202 ;; ----------- | |
| 203 ;; | |
| 54714 | 204 ;; BNF (Backus Naur Form) notation is defined like languages, and like |
| 205 ;; languages there are rules about name formation and syntax. In this section | |
| 206 ;; it's defined a BNF syntax that it's called simply EBNF (Extended BNF). | |
| 207 ;; ebnf2ps package also deal with other BNF notation. Please, see the variable | |
| 208 ;; `ebnf-syntax' documentation below in this section. | |
| 209 ;; | |
| 27451 | 210 ;; The current EBNF that ebnf2ps accepts has the following constructions: |
| 211 ;; | |
| 212 ;; ; comment (until end of line) | |
| 213 ;; A non-terminal | |
| 214 ;; "C" terminal | |
| 215 ;; ?C? special | |
| 216 ;; $A default non-terminal (see text below) | |
| 217 ;; $"C" default terminal (see text below) | |
| 218 ;; $?C? default special (see text below) | |
| 219 ;; A = B. production (A is the header and B the body) | |
| 220 ;; C D sequence (C occurs before D) | |
| 221 ;; C | D alternative (C or D occurs) | |
| 222 ;; A - B exception (A excluding B, B without any non-terminal) | |
| 54190 | 223 ;; n * A repetition (A repeats at least n (integer) times) |
| 224 ;; n * n A repetition (A repeats exactly n (integer) times) | |
| 225 ;; n * m A repetition (A repeats at least n (integer) and at most | |
| 226 ;; m (integer) times) | |
| 27451 | 227 ;; (C) group (expression C is grouped together) |
| 228 ;; [C] optional (C may or not occurs) | |
| 229 ;; C+ one or more occurrences of C | |
| 230 ;; {C}+ one or more occurrences of C | |
| 231 ;; {C}* zero or more occurrences of C | |
| 232 ;; {C} zero or more occurrences of C | |
| 233 ;; C / D equivalent to: C {D C}* | |
| 234 ;; {C || D}+ equivalent to: C {D C}* | |
| 235 ;; {C || D}* equivalent to: [C {D C}*] | |
| 236 ;; {C || D} equivalent to: [C {D C}*] | |
| 237 ;; | |
| 238 ;; The EBNF syntax written using the notation above is: | |
| 239 ;; | |
| 240 ;; EBNF = {production}+. | |
| 241 ;; | |
| 242 ;; production = non_terminal "=" body ".". ;; production | |
| 243 ;; | |
| 244 ;; body = {sequence || "|"}*. ;; alternative | |
| 245 ;; | |
| 246 ;; sequence = {exception}*. ;; sequence | |
| 247 ;; | |
| 248 ;; exception = repeat [ "-" repeat]. ;; exception | |
| 249 ;; | |
| 54190 | 250 ;; repeat = [ integer "*" [ integer ]] term. ;; repetition |
| 27451 | 251 ;; |
| 252 ;; term = factor | |
| 253 ;; | [factor] "+" ;; one-or-more | |
| 254 ;; | [factor] "/" [factor] ;; one-or-more | |
| 255 ;; . | |
| 256 ;; | |
| 257 ;; factor = [ "$" ] "\"" terminal "\"" ;; terminal | |
| 258 ;; | [ "$" ] non_terminal ;; non-terminal | |
| 259 ;; | [ "$" ] "?" special "?" ;; special | |
| 260 ;; | "(" body ")" ;; group | |
| 261 ;; | "[" body "]" ;; zero-or-one | |
| 262 ;; | "{" body [ "||" body ] "}+" ;; one-or-more | |
| 263 ;; | "{" body [ "||" body ] "}*" ;; zero-or-more | |
| 264 ;; | "{" body [ "||" body ] "}" ;; zero-or-more | |
| 265 ;; . | |
| 266 ;; | |
|
39342
73061d0eb82e
Replace "Prologue" by "Prolog" in PostScript
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
267 ;; non_terminal = "[!#%&'*-,0-:<>@-Z\\\\^-z~\\240-\\377]+". |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
268 ;; ;; that is, a valid non_terminal accepts decimal digits, letters (upper |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
269 ;; ;; and lower), 8-bit accentuated characters, |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
270 ;; ;; "!", "#", "%", "&", "'", "*", "+", ",", ":", |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
271 ;; ;; "<", ">", "@", "\", "^", "_", "`" and "~". |
| 27451 | 272 ;; |
| 273 ;; terminal = "\\([^\"\\]\\|\\\\[ -~\\240-\\377]\\)+". | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
274 ;; ;; that is, a valid terminal accepts any printable character (including |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
275 ;; ;; 8-bit accentuated characters) except `"', as `"' is used to delimit a |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
276 ;; ;; terminal. Also, accepts escaped characters, that is, a character |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
277 ;; ;; pair starting with `\' followed by a printable character, for |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
278 ;; ;; example: \", \\. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
279 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
280 ;; special = "[^?\\000-\\010\\012-\\037\\177-\\237]*". |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
281 ;; ;; that is, a valid special accepts any printable character (including |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
282 ;; ;; 8-bit accentuated characters) and tabs except `?', as `?' is used to |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
283 ;; ;; delimit a special. |
| 27451 | 284 ;; |
| 285 ;; integer = "[0-9]+". | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
286 ;; ;; that is, an integer is a sequence of one or more decimal digits. |
| 27451 | 287 ;; |
| 288 ;; comment = ";" "[^\\n\\000-\\010\\016-\\037\\177-\\237]*" "\\n". | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
289 ;; ;; that is, a comment starts with the character `;' and terminates at end |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
290 ;; ;; of line. Also, it only accepts printable characters (including 8-bit |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
291 ;; ;; accentuated characters) and tabs. |
| 27451 | 292 ;; |
| 293 ;; Try to use the above EBNF to test ebnf2ps. | |
| 294 ;; | |
| 295 ;; The `default' terminal, non-terminal and special is a way to indicate a | |
| 296 ;; default path in a production. For example, the production: | |
| 297 ;; | |
| 298 ;; X = [ $A ( B | $C ) | D ]. | |
| 299 ;; | |
| 300 ;; Indicates that the default meaning for "X" is "A C" if "X" is empty. | |
| 301 ;; | |
| 302 ;; The terminal name is controlled by `ebnf-terminal-regexp' and | |
| 303 ;; `ebnf-case-fold-search', so it's possible to match other kind of terminal | |
| 304 ;; name besides that enclosed by `"'. | |
| 305 ;; | |
| 306 ;; Let's see an example: | |
| 307 ;; | |
| 308 ;; (setq ebnf-terminal-regexp "[A-Z][_A-Z]*") ; upper case name | |
| 309 ;; (setq ebnf-case-fold-search nil) ; exact matching | |
| 310 ;; | |
| 311 ;; If you have the production: | |
| 312 ;; | |
| 313 ;; Logical = "(" Expression ( OR | AND | "XOR" ) Expression ")". | |
| 314 ;; | |
| 315 ;; The names are classified as: | |
| 316 ;; | |
| 317 ;; Logical Expression non-terminal | |
| 318 ;; "(" OR AND "XOR" ")" terminal | |
| 319 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
320 ;; The line comment is controlled by `ebnf-lex-comment-char'. The default |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
321 ;; value is ?\; (character `;'). |
| 27451 | 322 ;; |
| 323 ;; The end of production is controlled by `ebnf-lex-eop-char'. The default | |
| 324 ;; value is ?. (character `.'). | |
| 325 ;; | |
| 326 ;; The variable `ebnf-syntax' specifies which syntax to recognize: | |
| 327 ;; | |
| 328 ;; `ebnf' ebnf2ps recognizes the syntax described above. | |
| 329 ;; The following variables *ONLY* have effect with this | |
| 330 ;; setting: | |
| 331 ;; `ebnf-terminal-regexp', `ebnf-case-fold-search', | |
| 332 ;; `ebnf-lex-comment-char' and `ebnf-lex-eop-char'. | |
| 333 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
334 ;; `abnf' ebnf2ps recognizes the syntax described in the URL: |
| 54189 | 335 ;; `http://www.ietf.org/rfc/rfc2234.txt' |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
336 ;; ("Augmented BNF for Syntax Specifications: ABNF"). |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
337 ;; |
| 27451 | 338 ;; `iso-ebnf' ebnf2ps recognizes the syntax described in the URL: |
| 339 ;; `http://www.cl.cam.ac.uk/~mgk25/iso-ebnf.html' | |
| 340 ;; ("International Standard of the ISO EBNF Notation"). | |
| 341 ;; The following variables *ONLY* have effect with this | |
| 342 ;; setting: | |
| 343 ;; `ebnf-iso-alternative-p' and `ebnf-iso-normalize-p'. | |
| 344 ;; | |
| 345 ;; `yacc' ebnf2ps recognizes the Yacc/Bison syntax. | |
| 346 ;; The following variable *ONLY* has effect with this | |
| 347 ;; setting: | |
| 348 ;; `ebnf-yac-ignore-error-recovery'. | |
| 349 ;; | |
| 54625 | 350 ;; `ebnfx' ebnf2ps recognizes the syntax described in the URL: |
| 351 ;; `http://www.w3.org/TR/2004/REC-xml-20040204/#sec-notation' | |
| 352 ;; ("Extensible Markup Language (XML) 1.0 (Third Edition)") | |
| 353 ;; | |
| 54714 | 354 ;; `dtd' ebnf2ps recognizes the syntax described in the URL: |
| 355 ;; `http://www.w3.org/TR/2004/REC-xml-20040204/' | |
| 356 ;; ("Extensible Markup Language (XML) 1.0 (Third Edition)") | |
| 357 ;; | |
| 27451 | 358 ;; Any other value is treated as `ebnf'. |
| 359 ;; | |
| 360 ;; The default value is `ebnf'. | |
| 361 ;; | |
| 362 ;; | |
| 363 ;; Optimizations | |
| 364 ;; ------------- | |
| 365 ;; | |
| 366 ;; The following EBNF optimizations are done: | |
| 367 ;; | |
| 368 ;; [ { A }* ] ==> { A }* | |
| 369 ;; [ { A }+ ] ==> { A }* | |
| 370 ;; [ A ] + ==> { A }* | |
| 371 ;; { A }* + ==> { A }* | |
| 372 ;; { A }+ + ==> { A }+ | |
| 373 ;; { A }- ==> { A }+ | |
| 374 ;; [ A ]- ==> A | |
| 375 ;; ( A | EMPTY )- ==> A | |
| 376 ;; ( A | B | EMPTY )- ==> A | B | |
| 377 ;; [ A | B ] ==> A | B | EMPTY | |
| 378 ;; n * EMPTY ==> EMPTY | |
| 379 ;; EMPTY + ==> EMPTY | |
| 380 ;; EMPTY / EMPTY ==> EMPTY | |
| 381 ;; EMPTY - A ==> EMPTY | |
| 382 ;; | |
| 383 ;; The following optimizations are done when `ebnf-optimize' is non-nil: | |
| 384 ;; | |
| 385 ;; left recursion: | |
| 386 ;; 1. A = B | A C. ==> A = B {C}*. | |
| 387 ;; 2. A = B | A B. ==> A = {B}+. | |
| 388 ;; 3. A = | A B. ==> A = {B}*. | |
| 389 ;; 4. A = B | A C B. ==> A = {B || C}+. | |
| 390 ;; 5. A = B | D | A C | A E. ==> A = ( B | D ) { C | E }*. | |
| 391 ;; | |
| 392 ;; optional: | |
| 393 ;; 6. A = B | . ==> A = [B]. | |
| 394 ;; 7. A = | B . ==> A = [B]. | |
| 395 ;; | |
| 58339 | 396 ;; factorization: |
| 27451 | 397 ;; 8. A = B C | B D. ==> A = B (C | D). |
| 398 ;; 9. A = C B | D B. ==> A = (C | D) B. | |
| 399 ;; 10. A = B C E | B D E. ==> A = B (C | D) E. | |
| 400 ;; | |
| 401 ;; The above optimizations are specially useful when `ebnf-syntax' is `yacc'. | |
| 402 ;; | |
| 403 ;; | |
| 404 ;; Form Feed | |
| 405 ;; --------- | |
| 406 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
407 ;; You may use form feed (^L \014) to force a production to start on a new |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
408 ;; page, for example: |
| 27451 | 409 ;; |
| 410 ;; a) A = B | C. | |
| 411 ;; ^L | |
| 412 ;; X = Y | Z. | |
| 413 ;; | |
| 414 ;; b) A = B ^L | C. | |
| 415 ;; X = Y | Z. | |
| 416 ;; | |
| 417 ;; c) A = B ^L^L^L | C.^L | |
| 418 ;; ^L | |
| 419 ;; X = Y | Z. | |
| 420 ;; | |
| 421 ;; In all examples above, only the production X will start on a new page. | |
| 422 ;; | |
| 423 ;; | |
| 424 ;; Actions in Comments | |
| 425 ;; ------------------- | |
| 426 ;; | |
| 427 ;; ebnf2ps accepts the following actions in comments: | |
| 428 ;; | |
| 54714 | 429 ;; ;^ same as form feed. See section Form Feed above. |
| 430 ;; | |
| 27451 | 431 ;; ;> the next production starts in the same line as the current one. |
| 432 ;; It is useful when `ebnf-horizontal-orientation' is nil. | |
| 433 ;; | |
| 434 ;; ;< the next production starts in the next line. | |
| 435 ;; It is useful when `ebnf-horizontal-orientation' is non-nil. | |
| 436 ;; | |
| 437 ;; ;[EPS open a new EPS file. The EPS file name has the form: | |
| 438 ;; <PREFIX><NAME>.eps | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
439 ;; where <PREFIX> is given by variable `ebnf-eps-prefix' and |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
440 ;; <NAME> is the string given by ;[ action comment, this string is |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
441 ;; mapped to form a valid file name (see documentation for |
| 27451 | 442 ;; `ebnf-eps-buffer' or `ebnf-eps-region'). |
| 443 ;; It has effect only during `ebnf-eps-buffer' or | |
| 444 ;; `ebnf-eps-region' execution. | |
| 445 ;; It's an error to try to open an already opened EPS file. | |
| 446 ;; | |
| 447 ;; ;]EPS close an opened EPS file. | |
| 448 ;; It has effect only during `ebnf-eps-buffer' or | |
| 449 ;; `ebnf-eps-region' execution. | |
| 450 ;; It's an error to try to close a not opened EPS file. | |
| 451 ;; | |
| 452 ;; So if you have: | |
| 453 ;; | |
| 454 ;; (setq ebnf-horizontal-orientation nil) | |
| 455 ;; | |
| 456 ;; A = t. | |
| 457 ;; C = x. | |
| 458 ;; ;> C and B are drawn in the same line | |
| 459 ;; B = y. | |
| 460 ;; W = v. | |
| 461 ;; | |
| 462 ;; The graphical result is: | |
| 463 ;; | |
| 464 ;; +---+ | |
| 465 ;; | A | | |
| 466 ;; +---+ | |
| 467 ;; | |
| 468 ;; +---------+ +-----+ | |
| 469 ;; | | | | | |
| 470 ;; | C | | | | |
| 471 ;; | | | B | | |
| 472 ;; +---------+ | | | |
| 473 ;; | | | |
| 474 ;; +-----+ | |
| 475 ;; | |
| 476 ;; +-----------+ | |
| 477 ;; | W | | |
| 478 ;; +-----------+ | |
| 479 ;; | |
| 480 ;; Note that if ascending production sort is used, the productions A and B will | |
| 481 ;; be drawn in the same line instead of C and B. | |
| 482 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
483 ;; If consecutive actions occur, only the last one takes effect, so if you |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
484 ;; have: |
| 27451 | 485 ;; |
| 486 ;; A = X. | |
| 487 ;; ;< | |
| 488 ;; ^L | |
| 489 ;; ;> | |
| 490 ;; B = Y. | |
| 491 ;; | |
| 492 ;; Only the ;> will take effect, that is, A and B will be drawn in the same | |
| 493 ;; line. | |
| 494 ;; | |
| 54714 | 495 ;; In ISO EBNF the above actions are specified as (*^*), (*>*), (*<*), (*[EPS*) |
| 496 ;; and (*]EPS*). The first example above should be written: | |
| 27451 | 497 ;; |
| 498 ;; A = t; | |
| 499 ;; C = x; | |
| 500 ;; (*> C and B are drawn in the same line *) | |
| 501 ;; B = y; | |
| 502 ;; W = v; | |
| 503 ;; | |
| 504 ;; For an example of EPS action when executing `ebnf-eps-buffer' or | |
| 505 ;; `ebnf-eps-region': | |
| 506 ;; | |
| 507 ;; Z = B0. | |
| 508 ;; ;[CC | |
| 509 ;; ;[AA | |
| 510 ;; A = B1. | |
| 511 ;; ;[BB | |
| 512 ;; C = B2. | |
| 513 ;; ;]AA | |
| 514 ;; B = B3. | |
| 515 ;; ;]BB | |
| 516 ;; ;]CC | |
| 517 ;; D = B4. | |
| 518 ;; E = B5. | |
| 519 ;; ;[CC | |
| 520 ;; F = B6. | |
| 521 ;; ;]CC | |
| 522 ;; G = B7. | |
| 523 ;; | |
| 524 ;; The following table summarizes the results: | |
| 525 ;; | |
| 526 ;; EPS FILE NAME NO SORT ASCENDING SORT DESCENDING SORT | |
| 527 ;; ebnf--AA.eps A C A C C A | |
| 528 ;; ebnf--BB.eps C B B C C B | |
| 529 ;; ebnf--CC.eps A C B F A B C F F C B A | |
| 530 ;; ebnf--D.eps D D D | |
| 531 ;; ebnf--E.eps E E E | |
| 532 ;; ebnf--G.eps G G G | |
| 533 ;; ebnf--Z.eps Z Z Z | |
| 534 ;; | |
| 535 ;; As you can see if EPS actions is not used, each single production is | |
| 536 ;; generated per EPS file. To avoid overriding EPS files, use names in ;[ that | |
| 537 ;; it's not an existing production name. | |
| 538 ;; | |
| 539 ;; In the following case: | |
| 540 ;; | |
| 541 ;; A = B0. | |
| 542 ;; ;[AA | |
| 543 ;; A = B1. | |
| 544 ;; ;[BB | |
| 545 ;; A = B2. | |
| 546 ;; | |
| 547 ;; The production A is generated in both files ebnf--AA.eps and ebnf--BB.eps. | |
| 548 ;; | |
| 549 ;; | |
| 550 ;; Utilities | |
| 551 ;; --------- | |
| 552 ;; | |
| 553 ;; Some tools are provided to help you. | |
| 554 ;; | |
| 555 ;; `ebnf-setup' returns the current setup. | |
| 556 ;; | |
| 54191 | 557 ;; `ebnf-syntax-directory' does a syntactic analysis of your EBNF files in the |
| 558 ;; given directory. | |
| 559 ;; | |
| 560 ;; `ebnf-syntax-file' does a syntactic analysis of your EBNF in the given | |
| 561 ;; file. | |
| 562 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
563 ;; `ebnf-syntax-buffer' does a syntactic analysis of your EBNF in the current |
| 27451 | 564 ;; buffer. |
| 565 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
566 ;; `ebnf-syntax-region' does a syntactic analysis of your EBNF in the current |
| 27451 | 567 ;; region. |
| 568 ;; | |
| 569 ;; `ebnf-customize' activates a customization buffer for ebnf2ps options. | |
| 570 ;; | |
| 54191 | 571 ;; `ebnf-syntax-directory', `ebnf-syntax-file', `ebnf-syntax-buffer', |
| 572 ;; `ebnf-syntax-region' and `ebnf-customize' can be bound to keys in the same | |
| 573 ;; way as `ebnf-' commands. | |
| 27451 | 574 ;; |
| 575 ;; | |
| 576 ;; Hooks | |
| 577 ;; ----- | |
| 578 ;; | |
| 579 ;; ebn2ps has the following hook variables: | |
| 580 ;; | |
| 581 ;; `ebnf-hook' | |
| 582 ;; It is evaluated once before any ebnf2ps process. | |
| 583 ;; | |
| 584 ;; `ebnf-production-hook' | |
| 585 ;; It is evaluated on each beginning of production. | |
| 586 ;; | |
| 587 ;; `ebnf-page-hook' | |
| 588 ;; It is evaluated on each beginning of page. | |
| 589 ;; | |
| 590 ;; | |
| 591 ;; Options | |
| 592 ;; ------- | |
| 593 ;; | |
| 594 ;; Below it's shown a brief description of ebnf2ps options, please, see the | |
| 595 ;; options declaration in the code for a long documentation. | |
| 596 ;; | |
| 597 ;; `ebnf-horizontal-orientation' Non-nil means productions are drawn | |
| 598 ;; horizontally. | |
| 599 ;; | |
| 600 ;; `ebnf-horizontal-max-height' Non-nil means to use maximum production | |
| 601 ;; height in horizontal orientation. | |
| 602 ;; | |
| 603 ;; `ebnf-production-horizontal-space' Specify horizontal space in points | |
| 604 ;; between productions. | |
| 605 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
606 ;; `ebnf-production-vertical-space' Specify vertical space in points |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
607 ;; between productions. |
| 27451 | 608 ;; |
| 609 ;; `ebnf-justify-sequence' Specify justification of terms in a | |
| 610 ;; sequence inside alternatives. | |
| 611 ;; | |
| 612 ;; `ebnf-terminal-regexp' Specify how it's a terminal name. | |
| 613 ;; | |
| 614 ;; `ebnf-case-fold-search' Non-nil means ignore case on matching. | |
| 615 ;; | |
| 616 ;; `ebnf-terminal-font' Specify terminal font. | |
| 617 ;; | |
| 618 ;; `ebnf-terminal-shape' Specify terminal box shape. | |
| 619 ;; | |
| 620 ;; `ebnf-terminal-shadow' Non-nil means terminal box will have a | |
| 621 ;; shadow. | |
| 622 ;; | |
| 623 ;; `ebnf-terminal-border-width' Specify border width for terminal box. | |
| 624 ;; | |
| 625 ;; `ebnf-terminal-border-color' Specify border color for terminal box. | |
| 626 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
627 ;; `ebnf-production-name-p' Non-nil means production name will be |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
628 ;; printed. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
629 ;; |
| 27451 | 630 ;; `ebnf-sort-production' Specify how productions are sorted. |
| 631 ;; | |
| 632 ;; `ebnf-production-font' Specify production font. | |
| 633 ;; | |
| 634 ;; `ebnf-non-terminal-font' Specify non-terminal font. | |
| 635 ;; | |
| 636 ;; `ebnf-non-terminal-shape' Specify non-terminal box shape. | |
| 637 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
638 ;; `ebnf-non-terminal-shadow' Non-nil means non-terminal box will |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
639 ;; have a shadow. |
| 27451 | 640 ;; |
| 641 ;; `ebnf-non-terminal-border-width' Specify border width for non-terminal | |
| 642 ;; box. | |
| 643 ;; | |
| 644 ;; `ebnf-non-terminal-border-color' Specify border color for non-terminal | |
| 645 ;; box. | |
| 646 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
647 ;; `ebnf-special-show-delimiter' Non-nil means special delimiter |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
648 ;; (character `?') is shown. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
649 ;; |
| 27451 | 650 ;; `ebnf-special-font' Specify special font. |
| 651 ;; | |
| 652 ;; `ebnf-special-shape' Specify special box shape. | |
| 653 ;; | |
| 654 ;; `ebnf-special-shadow' Non-nil means special box will have a | |
| 655 ;; shadow. | |
| 656 ;; | |
| 657 ;; `ebnf-special-border-width' Specify border width for special box. | |
| 658 ;; | |
| 659 ;; `ebnf-special-border-color' Specify border color for special box. | |
| 660 ;; | |
| 661 ;; `ebnf-except-font' Specify except font. | |
| 662 ;; | |
| 663 ;; `ebnf-except-shape' Specify except box shape. | |
| 664 ;; | |
| 665 ;; `ebnf-except-shadow' Non-nil means except box will have a | |
| 666 ;; shadow. | |
| 667 ;; | |
| 668 ;; `ebnf-except-border-width' Specify border width for except box. | |
| 669 ;; | |
| 670 ;; `ebnf-except-border-color' Specify border color for except box. | |
| 671 ;; | |
| 672 ;; `ebnf-repeat-font' Specify repeat font. | |
| 673 ;; | |
| 674 ;; `ebnf-repeat-shape' Specify repeat box shape. | |
| 675 ;; | |
| 676 ;; `ebnf-repeat-shadow' Non-nil means repeat box will have a | |
| 677 ;; shadow. | |
| 678 ;; | |
| 679 ;; `ebnf-repeat-border-width' Specify border width for repeat box. | |
| 680 ;; | |
| 681 ;; `ebnf-repeat-border-color' Specify border color for repeat box. | |
| 682 ;; | |
| 683 ;; `ebnf-entry-percentage' Specify entry height on alternatives. | |
| 684 ;; | |
| 685 ;; `ebnf-arrow-shape' Specify the arrow shape. | |
| 686 ;; | |
| 687 ;; `ebnf-chart-shape' Specify chart flow shape. | |
| 688 ;; | |
| 689 ;; `ebnf-color-p' Non-nil means use color. | |
| 690 ;; | |
| 691 ;; `ebnf-line-width' Specify flow line width. | |
| 692 ;; | |
| 693 ;; `ebnf-line-color' Specify flow line color. | |
| 694 ;; | |
| 31255 | 695 ;; `ebnf-user-arrow' Specify a sexp for user arrow shape (a |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
696 ;; PostScript code). |
| 27451 | 697 ;; |
| 698 ;; `ebnf-debug-ps' Non-nil means to generate PostScript | |
| 699 ;; debug procedures. | |
| 700 ;; | |
| 701 ;; `ebnf-lex-comment-char' Specify the line comment character. | |
| 702 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
703 ;; `ebnf-lex-eop-char' Specify the end of production |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
704 ;; character. |
| 27451 | 705 ;; |
| 706 ;; `ebnf-syntax' Specify syntax to be recognized. | |
| 707 ;; | |
| 708 ;; `ebnf-iso-alternative-p' Non-nil means use alternative ISO EBNF. | |
| 709 ;; | |
| 710 ;; `ebnf-iso-normalize-p' Non-nil means normalize ISO EBNF syntax | |
| 711 ;; names. | |
| 712 ;; | |
| 713 ;; `ebnf-default-width' Specify additional border width over | |
| 714 ;; default terminal, non-terminal or | |
| 715 ;; special. | |
| 716 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
717 ;; `ebnf-file-suffix-regexp' Specify file name suffix that contains |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
718 ;; EBNF. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
719 ;; |
| 27451 | 720 ;; `ebnf-eps-prefix' Specify EPS prefix file name. |
| 721 ;; | |
| 722 ;; `ebnf-use-float-format' Non-nil means use `%f' float format. | |
| 723 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
724 ;; `ebnf-stop-on-error' Non-nil means signal error and stop. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
725 ;; Nil means signal error and continue. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
726 ;; |
| 27451 | 727 ;; `ebnf-yac-ignore-error-recovery' Non-nil means ignore error recovery. |
| 728 ;; | |
| 729 ;; `ebnf-ignore-empty-rule' Non-nil means ignore empty rules. | |
| 730 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
731 ;; `ebnf-optimize' Non-nil means optimize syntactic chart |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
732 ;; of rules. |
| 27451 | 733 ;; |
| 734 ;; To set the above options you may: | |
| 735 ;; | |
| 736 ;; a) insert the code in your ~/.emacs, like: | |
| 737 ;; | |
| 738 ;; (setq ebnf-terminal-shape 'bevel) | |
| 739 ;; | |
| 740 ;; This way always keep your default settings when you enter a new Emacs | |
| 741 ;; session. | |
| 742 ;; | |
| 743 ;; b) or use `set-variable' in your Emacs session, like: | |
| 744 ;; | |
| 745 ;; M-x set-variable RET ebnf-terminal-shape RET bevel RET | |
| 746 ;; | |
| 747 ;; This way keep your settings only during the current Emacs session. | |
| 748 ;; | |
| 749 ;; c) or use customization, for example: | |
| 750 ;; click on menu-bar *Help* option, | |
| 751 ;; then click on *Customize*, | |
| 752 ;; then click on *Browse Customization Groups*, | |
| 753 ;; expand *PostScript* group, | |
| 754 ;; expand *Ebnf2ps* group | |
| 755 ;; and then customize ebnf2ps options. | |
| 756 ;; Through this way, you may choose if the settings are kept or not when | |
| 757 ;; you leave out the current Emacs session. | |
| 758 ;; | |
| 759 ;; d) or see the option value: | |
| 760 ;; | |
| 761 ;; C-h v ebnf-terminal-shape RET | |
| 762 ;; | |
| 763 ;; and click the *customize* hypertext button. | |
| 764 ;; Through this way, you may choose if the settings are kept or not when | |
| 765 ;; you leave out the current Emacs session. | |
| 766 ;; | |
| 767 ;; e) or invoke: | |
| 768 ;; | |
| 769 ;; M-x ebnf-customize RET | |
| 770 ;; | |
| 771 ;; and then customize ebnf2ps options. | |
| 772 ;; Through this way, you may choose if the settings are kept or not when | |
| 773 ;; you leave out the current Emacs session. | |
| 774 ;; | |
| 775 ;; | |
| 776 ;; Styles | |
| 777 ;; ------ | |
| 778 ;; | |
| 779 ;; Sometimes you need to change the EBNF style you are using, for example, | |
| 780 ;; change the shapes and colors. These changes may force you to set some | |
| 781 ;; variables and after use, set back the variables to the old values. | |
| 782 ;; | |
| 783 ;; To help to handle this situation, ebnf2ps has the following commands to | |
| 784 ;; handle styles: | |
| 785 ;; | |
| 786 ;; `ebnf-insert-style' Insert a new style NAME with inheritance INHERITS and | |
| 787 ;; values VALUES. | |
| 788 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
789 ;; `ebnf-delete-style' Delete style NAME. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
790 ;; |
| 27451 | 791 ;; `ebnf-merge-style' Merge values of style NAME with style VALUES. |
| 792 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
793 ;; `ebnf-apply-style' Set STYLE as the current style. |
| 27451 | 794 ;; |
| 795 ;; `ebnf-reset-style' Reset current style. | |
| 796 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
797 ;; `ebnf-push-style' Push the current style and set STYLE as the current |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
798 ;; style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
799 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
800 ;; `ebnf-pop-style' Pop a style and set it as the current style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
801 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
802 ;; These commands help to put together a lot of variable settings in a group |
| 27451 | 803 ;; and name this group. So when you wish to apply these settings it's only |
| 804 ;; needed to give the name. | |
| 805 ;; | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
806 ;; There is also a notion of simple inheritance of style; so, if you declare |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
807 ;; that a style A inherits from a style B, all settings of B is applied first |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
808 ;; and then the settings of A is applied. This is useful when you wish to |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
809 ;; modify some aspects of an existing style, but at same time wish to keep it |
| 27451 | 810 ;; unmodified. |
| 811 ;; | |
| 812 ;; See documentation for `ebnf-style-database'. | |
| 813 ;; | |
| 814 ;; | |
| 815 ;; Layout | |
| 816 ;; ------ | |
| 817 ;; | |
| 818 ;; Below it is the layout of minimum area to draw each element, and it's used | |
| 819 ;; the following terms: | |
| 820 ;; | |
| 821 ;; font height is given by: | |
| 822 ;; (terminal font height + non-terminal font height) / 2 | |
| 823 ;; | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
824 ;; entry is the vertical position used to know where it should |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
825 ;; be drawn the flow line in the current element. |
| 27451 | 826 ;; |
| 827 ;; | |
| 828 ;; * SPECIAL, TERMINAL and NON-TERMINAL | |
| 829 ;; | |
| 830 ;; +==============+................................... | |
| 831 ;; | | } font height / 2 } entry } | |
| 832 ;; | XXXXXXXX...|....... } } | |
| 833 ;; ====+ XXXXXXXX +==== } text height ...... } height | |
| 834 ;; : | XXXXXXXX...|...:... } | |
| 835 ;; : | : : | : } font height / 2 } | |
| 836 ;; : +==============+...:............................... | |
| 837 ;; : : : : : : | |
| 838 ;; : : : : : :...................... | |
| 839 ;; : : : : : } font height } | |
| 840 ;; : : : : :....... } | |
| 841 ;; : : : : } font height / 2 } | |
| 842 ;; : : : :........... } | |
| 843 ;; : : : } text width } width | |
| 844 ;; : : :.................. } | |
| 845 ;; : : } font height / 2 } | |
| 846 ;; : :...................... } | |
| 847 ;; : } font height } | |
| 848 ;; :............................................. | |
| 849 ;; | |
| 850 ;; | |
| 851 ;; * OPTIONAL | |
| 852 ;; | |
| 853 ;; +==========+..................................... | |
| 854 ;; | | } } } | |
| 855 ;; | | } entry } } | |
| 856 ;; | | } } } | |
| 857 ;; ===+===+ +===+===... } element height } height | |
| 858 ;; : \ | | / : } } | |
| 859 ;; : + | | + : } } | |
| 860 ;; : | +==========+.|................. } | |
| 861 ;; : | : : | : } font height } | |
| 862 ;; : +==============+................................... | |
| 863 ;; : : : : | |
| 864 ;; : : : :...................... | |
| 865 ;; : : : } font height * 2 } | |
| 866 ;; : : :.......... } | |
| 867 ;; : : } element width } width | |
| 868 ;; : :..................... } | |
| 869 ;; : } font height * 2 } | |
| 870 ;; :............................................... | |
| 871 ;; | |
| 872 ;; | |
| 873 ;; * ALTERNATIVE | |
| 874 ;; | |
| 875 ;; +===+................................... | |
| 876 ;; +==+ A +==+ } A height } } | |
| 877 ;; | +===+..|........ } entry } | |
| 878 ;; + + } font height } } | |
| 879 ;; / +===+...\....... } } | |
| 880 ;; ===+====+ B +====+=== } B height ..... } height | |
| 881 ;; : \ +===+.../....... } | |
| 882 ;; : + + : } font height } | |
| 883 ;; : | +===+..|........ } | |
| 884 ;; : +==+ C +==+ : } C height } | |
| 885 ;; : : +===+................................... | |
| 886 ;; : : : : | |
| 887 ;; : : : :...................... | |
| 888 ;; : : : } font height * 2 } | |
| 889 ;; : : :......... } | |
| 890 ;; : : } max width } width | |
| 891 ;; : :................. } | |
| 892 ;; : } font height * 2 } | |
| 893 ;; :.......................................... | |
| 894 ;; | |
| 895 ;; NOTES: | |
| 896 ;; 1. An empty alternative has zero of height. | |
| 897 ;; | |
| 898 ;; 2. The variable `ebnf-entry-percentage' is used to determine the | |
| 899 ;; entry point. | |
| 900 ;; | |
| 901 ;; | |
| 902 ;; * ZERO OR MORE | |
| 903 ;; | |
| 904 ;; +===========+............................... | |
| 905 ;; +=+ separator +=+ } separator height } | |
| 906 ;; / +===========+..\........ } | |
| 907 ;; + + } } | |
| 908 ;; | | } font height } | |
| 909 ;; + + } } | |
| 910 ;; \ +===========+../........ } height = entry | |
| 911 ;; +=+ element +=+ } element height } | |
| 912 ;; /: +===========+..\........ } | |
| 913 ;; + : : + } } | |
| 914 ;; + : : + } font height } | |
| 915 ;; / : : \ } } | |
| 916 ;; ==+=======================+==....................... | |
| 917 ;; : : : : | |
| 918 ;; : : : :....................... | |
| 919 ;; : : : } font height * 2 } | |
| 920 ;; : : :......... } | |
| 921 ;; : : } max width } width | |
| 922 ;; : :......................... } | |
| 923 ;; : } font height * 2 } | |
| 924 ;; :................................................... | |
| 925 ;; | |
| 926 ;; | |
| 927 ;; * ONE OR MORE | |
| 928 ;; | |
| 929 ;; +===========+...................................... | |
| 930 ;; +=+ separator +=+ } separator height } } | |
| 931 ;; / +===========+..\...... } } | |
| 932 ;; + + } } entry } | |
| 933 ;; | | } font height } } height | |
| 934 ;; + + } } } | |
| 935 ;; \ +===========+../...... } } | |
| 936 ;; ===+=+ element +=+=== } element height .... } | |
| 937 ;; : : +===========+...................................... | |
| 938 ;; : : : : | |
| 939 ;; : : : :........................ | |
| 940 ;; : : : } font height * 2 } | |
| 941 ;; : : :....... } | |
| 942 ;; : : } max width } width | |
| 943 ;; : :....................... } | |
| 944 ;; : } font height * 2 } | |
| 945 ;; :.............................................. | |
| 946 ;; | |
| 947 ;; | |
| 948 ;; * PRODUCTION | |
| 949 ;; | |
| 950 ;; XXXXXX:...................................... | |
| 951 ;; XXXXXX: } production font height } | |
| 952 ;; XXXXXX:............ } | |
| 953 ;; } font height } | |
| 954 ;; +======+....... } height = entry | |
| 955 ;; | | } } | |
| 956 ;; ====+ +==== } element height } | |
| 957 ;; : | | : } } | |
| 958 ;; : +======+................................. | |
| 959 ;; : : : : | |
| 960 ;; : : : :...................... | |
| 961 ;; : : : } font height * 2 } | |
| 962 ;; : : :....... } | |
| 963 ;; : : } element width } width | |
| 964 ;; : :.............. } | |
| 965 ;; : } font height * 2 } | |
| 966 ;; :..................................... | |
| 967 ;; | |
| 968 ;; | |
| 969 ;; * REPEAT | |
| 970 ;; | |
| 971 ;; +================+................................... | |
| 972 ;; | | } font height / 2 } entry } | |
| 973 ;; | +===+...|....... } } | |
| 974 ;; ====+ N * | X | +==== } X height ......... } height | |
| 975 ;; : | : : +===+...|...:... } | |
| 976 ;; : | : : : : | : } font height / 2 } | |
| 977 ;; : +================+...:............................... | |
| 978 ;; : : : : : : : : | |
| 979 ;; : : : : : : : :...................... | |
| 980 ;; : : : : : : : } font height } | |
| 981 ;; : : : : : : :....... } | |
| 982 ;; : : : : : : } font height / 2 } | |
| 983 ;; : : : : : :........... } | |
| 984 ;; : : : : : } X width } | |
| 985 ;; : : : : :............... } | |
| 986 ;; : : : : } font height / 2 } width | |
| 987 ;; : : : :.................. } | |
| 988 ;; : : : } text width } | |
| 989 ;; : : :..................... } | |
| 990 ;; : : } font height / 2 } | |
| 991 ;; : :........................ } | |
| 992 ;; : } font height } | |
| 993 ;; :............................................... | |
| 994 ;; | |
| 995 ;; | |
| 996 ;; * EXCEPT | |
| 997 ;; | |
| 998 ;; +==================+................................... | |
| 999 ;; | | } font height / 2 } entry } | |
| 1000 ;; | +===+ +===+...|....... } } | |
| 1001 ;; ====+ | X | - | y | +==== } max height ....... } height | |
| 1002 ;; : | +===+ +===+...|...:... } | |
| 1003 ;; : | : : : : | : } font height / 2 } | |
| 1004 ;; : +==================+...:............................... | |
| 1005 ;; : : : : : : : : | |
| 1006 ;; : : : : : : : :...................... | |
| 1007 ;; : : : : : : : } font height } | |
| 1008 ;; : : : : : : :....... } | |
| 1009 ;; : : : : : : } font height / 2 } | |
| 1010 ;; : : : : : :........... } | |
| 1011 ;; : : : : : } Y width } | |
| 1012 ;; : : : : :............... } | |
| 1013 ;; : : : : } font height } width | |
| 1014 ;; : : : :................... } | |
| 1015 ;; : : : } X width } | |
| 1016 ;; : : :....................... } | |
| 1017 ;; : : } font height / 2 } | |
| 1018 ;; : :.......................... } | |
| 1019 ;; : } font height } | |
| 1020 ;; :................................................. | |
| 1021 ;; | |
| 1022 ;; NOTE: If Y element is empty, it's draw nothing at Y place. | |
| 1023 ;; | |
| 1024 ;; | |
| 1025 ;; Internal Structures | |
| 1026 ;; ------------------- | |
| 1027 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1028 ;; ebnf2ps has two passes. The first pass does a lexical and syntactic analysis |
| 27451 | 1029 ;; of current buffer and generates an intermediate representation. The second |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1030 ;; pass uses the intermediate representation to generate the PostScript |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1031 ;; syntactic chart. |
| 27451 | 1032 ;; |
| 1033 ;; The intermediate representation is a list of vectors, the vector element | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1034 ;; represents a syntactic chart element. Below is a vector representation for |
|
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1035 ;; each syntactic chart element. |
| 27451 | 1036 ;; |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1037 ;; [production WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH NAME PRODUCTION ACTION] |
| 27451 | 1038 ;; [alternative WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH LIST] |
| 1039 ;; [sequence WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH LIST] | |
| 1040 ;; [terminal WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH NAME DEFAULT] | |
| 1041 ;; [non-terminal WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH NAME DEFAULT] | |
| 1042 ;; [special WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH NAME DEFAULT] | |
| 1043 ;; [empty WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH] | |
| 1044 ;; [optional WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH ELEMENT] | |
| 1045 ;; [one-or-more WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH ELEMENT SEPARATOR] | |
| 1046 ;; [zero-or-more WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH ELEMENT SEPARATOR] | |
| 1047 ;; [repeat WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH TIMES ELEMENT] | |
| 1048 ;; [except WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH ELEMENT ELEMENT] | |
| 1049 ;; | |
| 1050 ;; The first vector position is a function symbol used to generate PostScript | |
| 1051 ;; for this element. | |
| 1052 ;; WIDTH-FUN is a function symbol called to adjust the element width. | |
| 1053 ;; DIM-FUN is a function symbol called to set the element dimensions. | |
| 1054 ;; ENTRY is the element entry point. | |
| 1055 ;; HEIGHT and WIDTH are the element height and width, respectively. | |
| 1056 ;; NAME is a string that it's the element name. | |
| 1057 ;; DEFAULT is a boolean that indicates if it's a `default' element. | |
| 1058 ;; PRODUCTION and ELEMENT are vectors that represents sub-elements of current | |
| 1059 ;; one. | |
| 1060 ;; LIST is a list of vector that represents the list part for alternatives and | |
| 1061 ;; sequences. | |
| 1062 ;; SEPARATOR is a vector that represents the sub-element used to separate the | |
| 1063 ;; list elements. | |
| 1064 ;; TIMES is a string representing the number of times that ELEMENT is repeated | |
| 1065 ;; on a repeat construction. | |
| 1066 ;; ACTION indicates some action that should be done before production is | |
| 1067 ;; generated. The current actions are: | |
| 1068 ;; | |
| 1069 ;; nil no action. | |
| 1070 ;; | |
| 1071 ;; form-feed current production starts on a new page. | |
| 1072 ;; | |
| 1073 ;; newline current production starts on next line, this is useful | |
| 1074 ;; when `ebnf-horizontal-orientation' is non-nil. | |
| 1075 ;; | |
| 1076 ;; keep-line current production continues on the current line, this | |
| 1077 ;; is useful when `ebnf-horizontal-orientation' is nil. | |
| 1078 ;; | |
| 1079 ;; | |
| 1080 ;; Things To Change | |
| 1081 ;; ---------------- | |
| 1082 ;; | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1083 ;; . Handle situations when syntactic chart is out of paper. |
| 27451 | 1084 ;; . Use other alphabet than ascii. |
| 1085 ;; . Optimizations... | |
| 1086 ;; | |
| 1087 ;; | |
| 1088 ;; Acknowledgements | |
| 1089 ;; ---------------- | |
| 1090 ;; | |
|
54145
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1091 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions: |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1092 ;; - `ebnf-production-name-p', `ebnf-stop-on-error', |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1093 ;; `ebnf-file-suffix-regexp'and `ebnf-special-show-delimiter' variables. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1094 ;; - `ebnf-delete-style', `ebnf-eps-file' and `ebnf-eps-directory' |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1095 ;; commands. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1096 ;; - some docs fix. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1097 ;; |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1098 ;; Thanks to Matthew K. Junker <junker@alum.mit.edu> for the suggestion to deal |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1099 ;; with some Bison features (%right, %left and %prec pragmas). His suggestion |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1100 ;; was extended to deal with %nonassoc pragma too. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1101 ;; |
| 27451 | 1102 ;; Thanks to all who emailed comments. |
| 1103 ;; | |
| 1104 ;; | |
| 1105 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 1106 | |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
35888
diff
changeset
|
1107 ;;; Code: |
| 27451 | 1108 |
| 1109 | |
| 1110 (require 'ps-print) | |
| 1111 | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1112 (and (string< ps-print-version "5.2.3") |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1113 (error "`ebnf2ps' requires `ps-print' package version 5.2.3 or later")) |
| 27451 | 1114 |
|
54145
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1115 |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1116 ;; to avoid gripes with Emacs 20 |
|
58340
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1117 (or (fboundp 'assq-delete-all) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1118 (defun assq-delete-all (key alist) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1119 "Delete from ALIST all elements whose car is KEY. |
|
54145
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1120 Return the modified alist. |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1121 Elements of ALIST that are not conses are ignored." |
|
58340
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1122 (let ((tail alist)) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1123 (while tail |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1124 (if (and (consp (car tail)) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1125 (eq (car (car tail)) key)) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1126 (setq alist (delq (car tail) alist))) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1127 (setq tail (cdr tail))) |
|
6ae939127d99
eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58339
diff
changeset
|
1128 alist))) |
|
54145
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
1129 |
| 27451 | 1130 |
| 1131 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 1132 ;; User Variables: | |
| 1133 | |
| 1134 | |
| 1135 ;;; Interface to the command system | |
| 1136 | |
| 1137 (defgroup postscript nil | |
| 1138 "PostScript Group" | |
| 1139 :tag "PostScript" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1140 :version "20" |
| 27451 | 1141 :group 'emacs) |
| 1142 | |
| 1143 | |
| 1144 (defgroup ebnf2ps nil | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1145 "Translate an EBNF to a syntactic chart on PostScript" |
| 27451 | 1146 :prefix "ebnf-" |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1147 :version "20" |
| 27451 | 1148 :group 'wp |
| 1149 :group 'postscript) | |
| 1150 | |
| 1151 | |
| 1152 (defgroup ebnf-special nil | |
| 1153 "Special customization" | |
| 1154 :prefix "ebnf-" | |
| 1155 :tag "Special" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1156 :version "20" |
| 27451 | 1157 :group 'ebnf2ps) |
| 1158 | |
| 1159 | |
| 1160 (defgroup ebnf-except nil | |
| 1161 "Except customization" | |
| 1162 :prefix "ebnf-" | |
| 1163 :tag "Except" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1164 :version "20" |
| 27451 | 1165 :group 'ebnf2ps) |
| 1166 | |
| 1167 | |
| 1168 (defgroup ebnf-repeat nil | |
| 1169 "Repeat customization" | |
| 1170 :prefix "ebnf-" | |
| 1171 :tag "Repeat" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1172 :version "20" |
| 27451 | 1173 :group 'ebnf2ps) |
| 1174 | |
| 1175 | |
| 1176 (defgroup ebnf-terminal nil | |
| 1177 "Terminal customization" | |
| 1178 :prefix "ebnf-" | |
| 1179 :tag "Terminal" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1180 :version "20" |
| 27451 | 1181 :group 'ebnf2ps) |
| 1182 | |
| 1183 | |
| 1184 (defgroup ebnf-non-terminal nil | |
| 1185 "Non-Terminal customization" | |
| 1186 :prefix "ebnf-" | |
| 1187 :tag "Non-Terminal" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1188 :version "20" |
| 27451 | 1189 :group 'ebnf2ps) |
| 1190 | |
| 1191 | |
| 1192 (defgroup ebnf-production nil | |
| 1193 "Production customization" | |
| 1194 :prefix "ebnf-" | |
| 1195 :tag "Production" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1196 :version "20" |
| 27451 | 1197 :group 'ebnf2ps) |
| 1198 | |
| 1199 | |
| 1200 (defgroup ebnf-shape nil | |
| 1201 "Shapes customization" | |
| 1202 :prefix "ebnf-" | |
| 1203 :tag "Shape" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1204 :version "20" |
| 27451 | 1205 :group 'ebnf2ps) |
| 1206 | |
| 1207 | |
| 1208 (defgroup ebnf-displacement nil | |
| 1209 "Displacement customization" | |
| 1210 :prefix "ebnf-" | |
| 1211 :tag "Displacement" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1212 :version "20" |
| 27451 | 1213 :group 'ebnf2ps) |
| 1214 | |
| 1215 | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1216 (defgroup ebnf-syntactic nil |
|
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1217 "Syntactic customization" |
| 27451 | 1218 :prefix "ebnf-" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1219 :tag "Syntactic" |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1220 :version "20" |
| 27451 | 1221 :group 'ebnf2ps) |
| 1222 | |
| 1223 | |
| 1224 (defgroup ebnf-optimization nil | |
| 1225 "Optimization customization" | |
| 1226 :prefix "ebnf-" | |
| 1227 :tag "Optimization" | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1228 :version "20" |
| 27451 | 1229 :group 'ebnf2ps) |
| 1230 | |
| 1231 | |
| 1232 (defcustom ebnf-horizontal-orientation nil | |
| 1233 "*Non-nil means productions are drawn horizontally." | |
| 1234 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1235 :version "20" |
| 27451 | 1236 :group 'ebnf-displacement) |
| 1237 | |
| 1238 | |
| 1239 (defcustom ebnf-horizontal-max-height nil | |
| 1240 "*Non-nil means to use maximum production height in horizontal orientation. | |
| 1241 | |
| 1242 It is only used when `ebnf-horizontal-orientation' is non-nil." | |
| 1243 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1244 :version "20" |
| 27451 | 1245 :group 'ebnf-displacement) |
| 1246 | |
| 1247 | |
| 1248 (defcustom ebnf-production-horizontal-space 0.0 ; use ebnf2ps default value | |
| 1249 "*Specify horizontal space in points between productions. | |
| 1250 | |
| 1251 Value less or equal to zero forces ebnf2ps to set a proper default value." | |
| 1252 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1253 :version "20" |
| 27451 | 1254 :group 'ebnf-displacement) |
| 1255 | |
| 1256 | |
| 1257 (defcustom ebnf-production-vertical-space 0.0 ; use ebnf2ps default value | |
| 1258 "*Specify vertical space in points between productions. | |
| 1259 | |
| 1260 Value less or equal to zero forces ebnf2ps to set a proper default value." | |
| 1261 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1262 :version "20" |
| 27451 | 1263 :group 'ebnf-displacement) |
| 1264 | |
| 1265 | |
| 1266 (defcustom ebnf-justify-sequence 'center | |
| 1267 "*Specify justification of terms in a sequence inside alternatives. | |
| 1268 | |
| 1269 Valid values are: | |
| 1270 | |
| 1271 `left' left justification | |
| 1272 `right' right justification | |
| 1273 any other value centralize" | |
| 1274 :type '(radio :tag "Sequence Justification" | |
| 1275 (const left) (const right) (other :tag "center" center)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1276 :version "20" |
| 27451 | 1277 :group 'ebnf-displacement) |
| 1278 | |
| 1279 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1280 (defcustom ebnf-special-show-delimiter t |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1281 "*Non-nil means special delimiter (character `?') is shown." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1282 :type 'boolean |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1283 :version "20" |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1284 :group 'ebnf-special) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1285 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1286 |
| 27451 | 1287 (defcustom ebnf-special-font '(7 Courier "Black" "Gray95" bold italic) |
| 1288 "*Specify special font. | |
| 1289 | |
| 1290 See documentation for `ebnf-production-font'." | |
| 1291 :type '(list :tag "Special Font" | |
| 1292 (number :tag "Font Size") | |
| 1293 (symbol :tag "Font Name") | |
| 1294 (choice :tag "Foreground Color" | |
| 1295 (string :tag "Name") | |
| 1296 (other :tag "Default" nil)) | |
| 1297 (choice :tag "Background Color" | |
| 1298 (string :tag "Name") | |
| 1299 (other :tag "Default" nil)) | |
| 1300 (repeat :tag "Font Attributes" :inline t | |
| 1301 (choice (const bold) (const italic) | |
| 1302 (const underline) (const strikeout) | |
| 1303 (const overline) (const shadow) | |
| 1304 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1305 :version "20" |
| 27451 | 1306 :group 'ebnf-special) |
| 1307 | |
| 1308 | |
| 1309 (defcustom ebnf-special-shape 'bevel | |
| 1310 "*Specify special box shape. | |
| 1311 | |
| 1312 See documentation for `ebnf-non-terminal-shape'." | |
| 1313 :type '(radio :tag "Special Shape" | |
| 1314 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1315 :version "20" |
| 27451 | 1316 :group 'ebnf-special) |
| 1317 | |
| 1318 | |
| 1319 (defcustom ebnf-special-shadow nil | |
| 1320 "*Non-nil means special box will have a shadow." | |
| 1321 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1322 :version "20" |
| 27451 | 1323 :group 'ebnf-special) |
| 1324 | |
| 1325 | |
| 1326 (defcustom ebnf-special-border-width 0.5 | |
| 1327 "*Specify border width for special box." | |
| 1328 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1329 :version "20" |
| 27451 | 1330 :group 'ebnf-special) |
| 1331 | |
| 1332 | |
| 1333 (defcustom ebnf-special-border-color "Black" | |
| 1334 "*Specify border color for special box." | |
| 1335 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1336 :version "20" |
| 27451 | 1337 :group 'ebnf-special) |
| 1338 | |
| 1339 | |
| 1340 (defcustom ebnf-except-font '(7 Courier "Black" "Gray90" bold italic) | |
| 1341 "*Specify except font. | |
| 1342 | |
| 1343 See documentation for `ebnf-production-font'." | |
| 1344 :type '(list :tag "Except Font" | |
| 1345 (number :tag "Font Size") | |
| 1346 (symbol :tag "Font Name") | |
| 1347 (choice :tag "Foreground Color" | |
| 1348 (string :tag "Name") | |
| 1349 (other :tag "Default" nil)) | |
| 1350 (choice :tag "Background Color" | |
| 1351 (string :tag "Name") | |
| 1352 (other :tag "Default" nil)) | |
| 1353 (repeat :tag "Font Attributes" :inline t | |
| 1354 (choice (const bold) (const italic) | |
| 1355 (const underline) (const strikeout) | |
| 1356 (const overline) (const shadow) | |
| 1357 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1358 :version "20" |
| 27451 | 1359 :group 'ebnf-except) |
| 1360 | |
| 1361 | |
| 1362 (defcustom ebnf-except-shape 'bevel | |
| 1363 "*Specify except box shape. | |
| 1364 | |
| 1365 See documentation for `ebnf-non-terminal-shape'." | |
| 1366 :type '(radio :tag "Except Shape" | |
| 1367 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1368 :version "20" |
| 27451 | 1369 :group 'ebnf-except) |
| 1370 | |
| 1371 | |
| 1372 (defcustom ebnf-except-shadow nil | |
| 1373 "*Non-nil means except box will have a shadow." | |
| 1374 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1375 :version "20" |
| 27451 | 1376 :group 'ebnf-except) |
| 1377 | |
| 1378 | |
| 1379 (defcustom ebnf-except-border-width 0.25 | |
| 1380 "*Specify border width for except box." | |
| 1381 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1382 :version "20" |
| 27451 | 1383 :group 'ebnf-except) |
| 1384 | |
| 1385 | |
| 1386 (defcustom ebnf-except-border-color "Black" | |
| 1387 "*Specify border color for except box." | |
| 1388 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1389 :version "20" |
| 27451 | 1390 :group 'ebnf-except) |
| 1391 | |
| 1392 | |
| 1393 (defcustom ebnf-repeat-font '(7 Courier "Black" "Gray85" bold italic) | |
| 1394 "*Specify repeat font. | |
| 1395 | |
| 1396 See documentation for `ebnf-production-font'." | |
| 1397 :type '(list :tag "Repeat Font" | |
| 1398 (number :tag "Font Size") | |
| 1399 (symbol :tag "Font Name") | |
| 1400 (choice :tag "Foreground Color" | |
| 1401 (string :tag "Name") | |
| 1402 (other :tag "Default" nil)) | |
| 1403 (choice :tag "Background Color" | |
| 1404 (string :tag "Name") | |
| 1405 (other :tag "Default" nil)) | |
| 1406 (repeat :tag "Font Attributes" :inline t | |
| 1407 (choice (const bold) (const italic) | |
| 1408 (const underline) (const strikeout) | |
| 1409 (const overline) (const shadow) | |
| 1410 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1411 :version "20" |
| 27451 | 1412 :group 'ebnf-repeat) |
| 1413 | |
| 1414 | |
| 1415 (defcustom ebnf-repeat-shape 'bevel | |
| 1416 "*Specify repeat box shape. | |
| 1417 | |
| 1418 See documentation for `ebnf-non-terminal-shape'." | |
| 1419 :type '(radio :tag "Repeat Shape" | |
| 1420 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1421 :version "20" |
| 27451 | 1422 :group 'ebnf-repeat) |
| 1423 | |
| 1424 | |
| 1425 (defcustom ebnf-repeat-shadow nil | |
| 1426 "*Non-nil means repeat box will have a shadow." | |
| 1427 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1428 :version "20" |
| 27451 | 1429 :group 'ebnf-repeat) |
| 1430 | |
| 1431 | |
| 1432 (defcustom ebnf-repeat-border-width 0.0 | |
| 1433 "*Specify border width for repeat box." | |
| 1434 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1435 :version "20" |
| 27451 | 1436 :group 'ebnf-repeat) |
| 1437 | |
| 1438 | |
| 1439 (defcustom ebnf-repeat-border-color "Black" | |
| 1440 "*Specify border color for repeat box." | |
| 1441 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1442 :version "20" |
| 27451 | 1443 :group 'ebnf-repeat) |
| 1444 | |
| 1445 | |
| 1446 (defcustom ebnf-terminal-font '(7 Courier "Black" "White") | |
| 1447 "*Specify terminal font. | |
| 1448 | |
| 1449 See documentation for `ebnf-production-font'." | |
| 1450 :type '(list :tag "Terminal Font" | |
| 1451 (number :tag "Font Size") | |
| 1452 (symbol :tag "Font Name") | |
| 1453 (choice :tag "Foreground Color" | |
| 1454 (string :tag "Name") | |
| 1455 (other :tag "Default" nil)) | |
| 1456 (choice :tag "Background Color" | |
| 1457 (string :tag "Name") | |
| 1458 (other :tag "Default" nil)) | |
| 1459 (repeat :tag "Font Attributes" :inline t | |
| 1460 (choice (const bold) (const italic) | |
| 1461 (const underline) (const strikeout) | |
| 1462 (const overline) (const shadow) | |
| 1463 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1464 :version "20" |
| 27451 | 1465 :group 'ebnf-terminal) |
| 1466 | |
| 1467 | |
| 1468 (defcustom ebnf-terminal-shape 'miter | |
| 1469 "*Specify terminal box shape. | |
| 1470 | |
| 1471 See documentation for `ebnf-non-terminal-shape'." | |
| 1472 :type '(radio :tag "Terminal Shape" | |
| 1473 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1474 :version "20" |
| 27451 | 1475 :group 'ebnf-terminal) |
| 1476 | |
| 1477 | |
| 1478 (defcustom ebnf-terminal-shadow nil | |
| 1479 "*Non-nil means terminal box will have a shadow." | |
| 1480 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1481 :version "20" |
| 27451 | 1482 :group 'ebnf-terminal) |
| 1483 | |
| 1484 | |
| 1485 (defcustom ebnf-terminal-border-width 1.0 | |
| 1486 "*Specify border width for terminal box." | |
| 1487 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1488 :version "20" |
| 27451 | 1489 :group 'ebnf-terminal) |
| 1490 | |
| 1491 | |
| 1492 (defcustom ebnf-terminal-border-color "Black" | |
| 1493 "*Specify border color for terminal box." | |
| 1494 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1495 :version "20" |
| 27451 | 1496 :group 'ebnf-terminal) |
| 1497 | |
| 1498 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1499 (defcustom ebnf-production-name-p t |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1500 "*Non-nil means production name will be printed." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1501 :type 'boolean |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1502 :version "20" |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1503 :group 'ebnf-production) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1504 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1505 |
| 27451 | 1506 (defcustom ebnf-sort-production nil |
| 1507 "*Specify how productions are sorted. | |
| 1508 | |
| 1509 Valid values are: | |
| 1510 | |
| 1511 nil don't sort productions. | |
| 1512 `ascending' ascending sort. | |
| 1513 any other value descending sort." | |
| 1514 :type '(radio :tag "Production Sort" | |
| 1515 (const :tag "Ascending" ascending) | |
| 1516 (const :tag "Descending" descending) | |
| 1517 (other :tag "No Sort" nil)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1518 :version "20" |
| 27451 | 1519 :group 'ebnf-production) |
| 1520 | |
| 1521 | |
| 1522 (defcustom ebnf-production-font '(10 Helvetica "Black" "White" bold) | |
| 1523 "*Specify production header font. | |
| 1524 | |
| 1525 It is a list with the following form: | |
| 1526 | |
| 1527 (SIZE NAME FOREGROUND BACKGROUND ATTRIBUTE...) | |
| 1528 | |
| 1529 Where: | |
| 1530 SIZE is the font size. | |
| 1531 NAME is the font name symbol. | |
| 1532 ATTRIBUTE is one of the following symbols: | |
| 1533 bold - use bold font. | |
| 1534 italic - use italic font. | |
| 1535 underline - put a line under text. | |
| 1536 strikeout - like underline, but the line is in middle of text. | |
| 1537 overline - like underline, but the line is over the text. | |
| 1538 shadow - text will have a shadow. | |
| 1539 box - text will be surrounded by a box. | |
| 1540 outline - print characters as hollow outlines. | |
| 1541 FOREGROUND is a foreground string color name; if it's nil, the default color is | |
| 1542 \"Black\". | |
| 1543 BACKGROUND is a background string color name; if it's nil, the default color is | |
| 1544 \"White\". | |
| 1545 | |
| 1546 See `ps-font-info-database' for valid font name." | |
| 1547 :type '(list :tag "Production Font" | |
| 1548 (number :tag "Font Size") | |
| 1549 (symbol :tag "Font Name") | |
| 1550 (choice :tag "Foreground Color" | |
| 1551 (string :tag "Name") | |
| 1552 (other :tag "Default" nil)) | |
| 1553 (choice :tag "Background Color" | |
| 1554 (string :tag "Name") | |
| 1555 (other :tag "Default" nil)) | |
| 1556 (repeat :tag "Font Attributes" :inline t | |
| 1557 (choice (const bold) (const italic) | |
| 1558 (const underline) (const strikeout) | |
| 1559 (const overline) (const shadow) | |
| 1560 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1561 :version "20" |
| 27451 | 1562 :group 'ebnf-production) |
| 1563 | |
| 1564 | |
| 1565 (defcustom ebnf-non-terminal-font '(7 Helvetica "Black" "White") | |
| 1566 "*Specify non-terminal font. | |
| 1567 | |
| 1568 See documentation for `ebnf-production-font'." | |
| 1569 :type '(list :tag "Non-Terminal Font" | |
| 1570 (number :tag "Font Size") | |
| 1571 (symbol :tag "Font Name") | |
| 1572 (choice :tag "Foreground Color" | |
| 1573 (string :tag "Name") | |
| 1574 (other :tag "Default" nil)) | |
| 1575 (choice :tag "Background Color" | |
| 1576 (string :tag "Name") | |
| 1577 (other :tag "Default" nil)) | |
| 1578 (repeat :tag "Font Attributes" :inline t | |
| 1579 (choice (const bold) (const italic) | |
| 1580 (const underline) (const strikeout) | |
| 1581 (const overline) (const shadow) | |
| 1582 (const box) (const outline)))) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1583 :version "20" |
| 27451 | 1584 :group 'ebnf-non-terminal) |
| 1585 | |
| 1586 | |
| 1587 (defcustom ebnf-non-terminal-shape 'round | |
| 1588 "*Specify non-terminal box shape. | |
| 1589 | |
| 1590 Valid values are: | |
| 1591 | |
| 1592 `miter' +-------+ | |
| 1593 | | | |
| 1594 +-------+ | |
| 1595 | |
| 1596 `round' ------- | |
| 1597 ( ) | |
| 1598 ------- | |
| 1599 | |
| 1600 `bevel' /-------\\ | |
| 1601 | | | |
| 1602 \\-------/ | |
| 1603 | |
| 1604 Any other value is treated as `miter'." | |
| 1605 :type '(radio :tag "Non-Terminal Shape" | |
| 1606 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1607 :version "20" |
| 27451 | 1608 :group 'ebnf-non-terminal) |
| 1609 | |
| 1610 | |
| 1611 (defcustom ebnf-non-terminal-shadow nil | |
| 1612 "*Non-nil means non-terminal box will have a shadow." | |
| 1613 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1614 :version "20" |
| 27451 | 1615 :group 'ebnf-non-terminal) |
| 1616 | |
| 1617 | |
| 1618 (defcustom ebnf-non-terminal-border-width 1.0 | |
| 1619 "*Specify border width for non-terminal box." | |
| 1620 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1621 :version "20" |
| 27451 | 1622 :group 'ebnf-non-terminal) |
| 1623 | |
| 1624 | |
| 1625 (defcustom ebnf-non-terminal-border-color "Black" | |
| 1626 "*Specify border color for non-terminal box." | |
| 1627 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1628 :version "20" |
| 27451 | 1629 :group 'ebnf-non-terminal) |
| 1630 | |
| 1631 | |
| 1632 (defcustom ebnf-arrow-shape 'hollow | |
| 1633 "*Specify the arrow shape. | |
| 1634 | |
| 1635 Valid values are: | |
| 1636 | |
| 1637 `none' ====== | |
| 1638 | |
| 1639 `semi-up' * `transparent' * | |
| 1640 * |* | |
| 1641 =====* | * | |
| 1642 ==+==* | |
| 1643 | * | |
| 1644 |* | |
| 1645 * | |
| 1646 | |
| 1647 `semi-down' =====* `hollow' * | |
| 1648 * |* | |
| 1649 * | * | |
| 1650 ==+ * | |
| 1651 | * | |
| 1652 |* | |
| 1653 * | |
| 1654 | |
| 1655 `simple' * `full' * | |
| 1656 * |* | |
| 1657 =====* |X* | |
| 1658 * ==+XX* | |
| 1659 * |X* | |
| 1660 |* | |
| 1661 * | |
| 1662 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1663 `semi-up-hollow' `semi-up-full' |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1664 * * |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1665 |* |* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1666 | * |X* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1667 ==+==* ==+==* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1668 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1669 `semi-down-hollow' `semi-down-full' |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1670 ==+==* ==+==* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1671 | * |X* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1672 |* |* |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1673 * * |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1674 |
| 27451 | 1675 `user' See also documentation for variable `ebnf-user-arrow'. |
| 1676 | |
| 1677 Any other value is treated as `none'." | |
| 1678 :type '(radio :tag "Arrow Shape" | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1679 (const none) (const semi-up) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1680 (const semi-down) (const simple) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1681 (const transparent) (const hollow) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1682 (const full) (const semi-up-hollow) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1683 (const semi-down-hollow) (const semi-up-full) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1684 (const semi-down-full) (const user)) |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1685 :version "20" |
| 27451 | 1686 :group 'ebnf-shape) |
| 1687 | |
| 1688 | |
| 1689 (defcustom ebnf-chart-shape 'round | |
| 1690 "*Specify chart flow shape. | |
| 1691 | |
| 1692 See documentation for `ebnf-non-terminal-shape'." | |
| 1693 :type '(radio :tag "Chart Flow Shape" | |
| 1694 (const miter) (const round) (const bevel)) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1695 :version "20" |
| 27451 | 1696 :group 'ebnf-shape) |
| 1697 | |
| 1698 | |
| 1699 (defcustom ebnf-user-arrow nil | |
| 31255 | 1700 "*Specify a sexp for user arrow shape (a PostScript code). |
| 1701 | |
| 1702 When evaluated, the sexp should return nil or a string containing PostScript | |
| 1703 code. PostScript code should draw a right arrow. | |
| 27451 | 1704 |
| 1705 The anatomy of a right arrow is: | |
| 1706 | |
| 1707 ...... Initial position | |
| 1708 : | |
| 1709 : *................. | |
| 1710 : | * } } | |
| 1711 : | * } hT4 } | |
| 1712 v | * } } | |
| 1713 ======+======*... } hT2 | |
| 1714 : | *: } } | |
| 1715 : | * : } hT4 } | |
| 1716 : | * : } } | |
| 1717 : *................. | |
| 1718 : : : | |
| 1719 : : :.......... | |
| 1720 : : } hT2 } | |
| 1721 : :.......... } hT | |
| 1722 : } hT2 } | |
| 1723 :....................... | |
| 1724 | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1725 Where `hT', `hT2' and `hT4' are predefined PostScript variable names that can |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1726 be used to generate your own arrow. As these variables are used along |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1727 PostScript execution, *DON'T* modify the values of them. Instead, copy the |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
1728 values, if you need to modify them. |
| 27451 | 1729 |
| 1730 The relation between these variables is: hT = 2 * hT2 = 4 * hT4. | |
| 1731 | |
| 1732 The variable `ebnf-user-arrow' is only used when `ebnf-arrow-shape' is set to | |
| 31255 | 1733 symbol `user'." |
| 1734 :type '(sexp :tag "User Arrow Shape") | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1735 :version "20" |
| 27451 | 1736 :group 'ebnf-shape) |
| 1737 | |
| 1738 | |
| 1739 (defcustom ebnf-syntax 'ebnf | |
| 1740 "*Specify syntax to be recognized. | |
| 1741 | |
| 1742 Valid values are: | |
| 1743 | |
| 27495 | 1744 `ebnf' ebnf2ps recognizes the syntax described in ebnf2ps |
| 1745 documentation. | |
| 27451 | 1746 The following variables *ONLY* have effect with this |
| 1747 setting: | |
| 1748 `ebnf-terminal-regexp', `ebnf-case-fold-search', | |
| 1749 `ebnf-lex-comment-char' and `ebnf-lex-eop-char'. | |
| 1750 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1751 `abnf' ebnf2ps recognizes the syntax described in the URL: |
| 54189 | 1752 `http://www.ietf.org/rfc/rfc2234.txt' |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1753 (\"Augmented BNF for Syntax Specifications: ABNF\"). |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1754 |
| 27451 | 1755 `iso-ebnf' ebnf2ps recognizes the syntax described in the URL: |
| 1756 `http://www.cl.cam.ac.uk/~mgk25/iso-ebnf.html' | |
| 1757 (\"International Standard of the ISO EBNF Notation\"). | |
| 1758 The following variables *ONLY* have effect with this | |
| 1759 setting: | |
| 1760 `ebnf-iso-alternative-p' and `ebnf-iso-normalize-p'. | |
| 1761 | |
| 1762 `yacc' ebnf2ps recognizes the Yacc/Bison syntax. | |
| 1763 The following variable *ONLY* has effect with this | |
| 1764 setting: | |
| 1765 `ebnf-yac-ignore-error-recovery'. | |
| 1766 | |
| 54625 | 1767 `ebnfx' ebnf2ps recognizes the syntax described in the URL: |
| 1768 `http://www.w3.org/TR/2004/REC-xml-20040204/#sec-notation' | |
| 1769 (\"Extensible Markup Language (XML) 1.0 (Third Edition)\") | |
| 1770 | |
| 54714 | 1771 `dtd' ebnf2ps recognizes the syntax described in the URL: |
| 1772 `http://www.w3.org/TR/2004/REC-xml-20040204/' | |
| 1773 (\"Extensible Markup Language (XML) 1.0 (Third Edition)\") | |
| 1774 | |
| 27451 | 1775 Any other value is treated as `ebnf'." |
| 1776 :type '(radio :tag "Syntax" | |
| 54625 | 1777 (const ebnf) (const abnf) (const iso-ebnf) |
| 54714 | 1778 (const yacc) (const ebnfx) (const dtd)) |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1779 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1780 :group 'ebnf-syntactic) |
| 27451 | 1781 |
| 1782 | |
| 1783 (defcustom ebnf-lex-comment-char ?\; | |
| 1784 "*Specify the line comment character. | |
| 1785 | |
| 1786 It's used only when `ebnf-syntax' is `ebnf'." | |
| 1787 :type 'character | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1788 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1789 :group 'ebnf-syntactic) |
| 27451 | 1790 |
| 1791 | |
| 1792 (defcustom ebnf-lex-eop-char ?. | |
| 1793 "*Specify the end of production character. | |
| 1794 | |
| 1795 It's used only when `ebnf-syntax' is `ebnf'." | |
| 1796 :type 'character | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1797 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1798 :group 'ebnf-syntactic) |
| 27451 | 1799 |
| 1800 | |
| 1801 (defcustom ebnf-terminal-regexp nil | |
| 1802 "*Specify how it's a terminal name. | |
| 1803 | |
| 1804 If it's nil, the terminal name must be enclosed by `\"'. | |
| 1805 If it's a string, it should be a regexp that it'll be used to determine a | |
| 1806 terminal name; terminal name may also be enclosed by `\"'. | |
| 1807 | |
| 1808 It's used only when `ebnf-syntax' is `ebnf'." | |
| 1809 :type '(radio :tag "Terminal Name" | |
| 1810 (const nil) regexp) | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1811 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1812 :group 'ebnf-syntactic) |
| 27451 | 1813 |
| 1814 | |
| 1815 (defcustom ebnf-case-fold-search nil | |
| 1816 "*Non-nil means ignore case on matching. | |
| 1817 | |
| 1818 It's only used when `ebnf-terminal-regexp' is non-nil and when `ebnf-syntax' is | |
| 1819 `ebnf'." | |
| 1820 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1821 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1822 :group 'ebnf-syntactic) |
| 27451 | 1823 |
| 1824 | |
| 1825 (defcustom ebnf-iso-alternative-p nil | |
| 1826 "*Non-nil means use alternative ISO EBNF. | |
| 1827 | |
| 1828 It's only used when `ebnf-syntax' is `iso-ebnf'. | |
| 1829 | |
| 1830 This variable affects the following symbol set: | |
| 1831 | |
| 1832 STANDARD ALTERNATIVE | |
| 1833 | ==> / or ! | |
| 1834 [ ==> (/ | |
| 1835 ] ==> /) | |
| 1836 { ==> (: | |
| 1837 } ==> :) | |
| 1838 ; ==> ." | |
| 1839 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1840 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1841 :group 'ebnf-syntactic) |
| 27451 | 1842 |
| 1843 | |
| 1844 (defcustom ebnf-iso-normalize-p nil | |
| 1845 "*Non-nil means normalize ISO EBNF syntax names. | |
| 1846 | |
| 1847 Normalize a name means that several contiguous spaces inside name become a | |
| 1848 single space, so \"A B C\" is normalized to \"A B C\". | |
| 1849 | |
| 1850 It's only used when `ebnf-syntax' is `iso-ebnf'." | |
| 1851 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1852 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1853 :group 'ebnf-syntactic) |
| 27451 | 1854 |
| 1855 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1856 (defcustom ebnf-file-suffix-regexp "\.[Bb][Nn][Ff]$" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1857 "*Specify file name suffix that contains EBNF. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1858 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1859 See `ebnf-eps-directory' command." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1860 :type 'regexp |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1861 :version "20" |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1862 :group 'ebnf2ps) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1863 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1864 |
| 27451 | 1865 (defcustom ebnf-eps-prefix "ebnf--" |
| 1866 "*Specify EPS prefix file name. | |
| 1867 | |
| 1868 See `ebnf-eps-buffer' and `ebnf-eps-region' commands." | |
| 1869 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1870 :version "20" |
| 27451 | 1871 :group 'ebnf2ps) |
| 1872 | |
| 1873 | |
| 1874 (defcustom ebnf-entry-percentage 0.5 ; middle | |
| 1875 "*Specify entry height on alternatives. | |
| 1876 | |
| 1877 It must be a float between 0.0 (top) and 1.0 (bottom)." | |
| 1878 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1879 :version "20" |
| 27451 | 1880 :group 'ebnf2ps) |
| 1881 | |
| 1882 | |
| 1883 (defcustom ebnf-default-width 0.6 | |
| 1884 "*Specify additional border width over default terminal, non-terminal or | |
| 1885 special." | |
| 1886 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1887 :version "20" |
| 27451 | 1888 :group 'ebnf2ps) |
| 1889 | |
| 1890 | |
| 1891 ;; Printing color requires x-color-values. | |
| 1892 (defcustom ebnf-color-p (or (fboundp 'x-color-values) ; Emacs | |
| 1893 (fboundp 'color-instance-rgb-components)) ; XEmacs | |
| 1894 "*Non-nil means use color." | |
| 1895 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1896 :version "20" |
| 27451 | 1897 :group 'ebnf2ps) |
| 1898 | |
| 1899 | |
| 1900 (defcustom ebnf-line-width 1.0 | |
| 1901 "*Specify flow line width." | |
| 1902 :type 'number | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1903 :version "20" |
| 27451 | 1904 :group 'ebnf2ps) |
| 1905 | |
| 1906 | |
| 1907 (defcustom ebnf-line-color "Black" | |
| 1908 "*Specify flow line color." | |
| 1909 :type 'string | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1910 :version "20" |
| 27451 | 1911 :group 'ebnf2ps) |
| 1912 | |
| 1913 | |
| 1914 (defcustom ebnf-debug-ps nil | |
| 1915 "*Non-nil means to generate PostScript debug procedures. | |
| 1916 | |
| 1917 It is intended to help PostScript programmers in debugging." | |
| 1918 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1919 :version "20" |
| 27451 | 1920 :group 'ebnf2ps) |
| 1921 | |
| 1922 | |
| 1923 (defcustom ebnf-use-float-format t | |
| 1924 "*Non-nil means use `%f' float format. | |
| 1925 | |
| 1926 The advantage of using float format is that ebnf2ps generates a little short | |
| 1927 PostScript file. | |
| 1928 | |
| 1929 If it occurs the error message: | |
| 1930 | |
| 1931 Invalid format operation %f | |
| 1932 | |
| 1933 when executing ebnf2ps, set `ebnf-use-float-format' to nil." | |
| 1934 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1935 :version "20" |
| 27451 | 1936 :group 'ebnf2ps) |
| 1937 | |
| 1938 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1939 (defcustom ebnf-stop-on-error nil |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1940 "*Non-nil means signal error and stop. Nil means signal error and continue." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1941 :type 'boolean |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1942 :version "20" |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1943 :group 'ebnf2ps) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1944 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1945 |
| 27451 | 1946 (defcustom ebnf-yac-ignore-error-recovery nil |
| 1947 "*Non-nil means ignore error recovery. | |
| 1948 | |
| 1949 It's only used when `ebnf-syntax' is `yacc'." | |
| 1950 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1951 :version "20" |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1952 :group 'ebnf-syntactic) |
| 27451 | 1953 |
| 1954 | |
| 1955 (defcustom ebnf-ignore-empty-rule nil | |
| 1956 "*Non-nil means ignore empty rules. | |
| 1957 | |
| 1958 It's interesting to set this variable if your Yacc/Bison grammar has a lot of | |
| 1959 middle action rule." | |
| 1960 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1961 :version "20" |
| 27451 | 1962 :group 'ebnf-optimization) |
| 1963 | |
| 1964 | |
| 1965 (defcustom ebnf-optimize nil | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
1966 "*Non-nil means optimize syntactic chart of rules. |
| 27451 | 1967 |
| 1968 The following optimizations are done: | |
| 1969 | |
| 1970 left recursion: | |
| 1971 1. A = B | A C. ==> A = B {C}*. | |
| 1972 2. A = B | A B. ==> A = {B}+. | |
| 1973 3. A = | A B. ==> A = {B}*. | |
| 1974 4. A = B | A C B. ==> A = {B || C}+. | |
| 1975 5. A = B | D | A C | A E. ==> A = ( B | D ) { C | E }*. | |
| 1976 | |
| 1977 optional: | |
| 1978 6. A = B | . ==> A = [B]. | |
| 1979 7. A = | B . ==> A = [B]. | |
| 1980 | |
| 58339 | 1981 factorization: |
| 27451 | 1982 8. A = B C | B D. ==> A = B (C | D). |
| 1983 9. A = C B | D B. ==> A = (C | D) B. | |
| 1984 10. A = B C E | B D E. ==> A = B (C | D) E. | |
| 1985 | |
| 1986 The above optimizations are specially useful when `ebnf-syntax' is `yacc'." | |
| 1987 :type 'boolean | |
|
58338
16486fc50b5e
:version tag
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54714
diff
changeset
|
1988 :version "20" |
| 27451 | 1989 :group 'ebnf-optimization) |
| 1990 | |
| 1991 | |
| 1992 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 54714 | 1993 ;; To make this file smaller, some commands go in a separate file. |
| 1994 ;; But autoload them here to make the separation invisible. | |
| 1995 ;; Autoload is here to avoid compilation gripes. | |
| 1996 | |
| 1997 (autoload 'ebnf-eliminate-empty-rules "ebnf-otz" | |
| 1998 "Eliminate empty rules.") | |
| 1999 | |
| 2000 (autoload 'ebnf-optimize "ebnf-otz" | |
| 2001 "Syntactic chart optimizer.") | |
| 2002 | |
| 2003 (autoload 'ebnf-otz-initialize "ebnf-otz" | |
| 2004 "Initialize optimizer.") | |
| 2005 | |
| 2006 | |
| 2007 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 27451 | 2008 ;; Customization |
| 2009 | |
| 2010 | |
| 2011 ;;;###autoload | |
| 2012 (defun ebnf-customize () | |
| 2013 "Customization for ebnf group." | |
| 2014 (interactive) | |
| 2015 (customize-group 'ebnf2ps)) | |
| 2016 | |
| 2017 | |
| 2018 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 2019 ;; User commands | |
| 2020 | |
| 2021 | |
| 2022 ;;;###autoload | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2023 (defun ebnf-print-directory (&optional directory) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2024 "Generate and print a PostScript syntactic chart image of DIRECTORY. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2025 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2026 If DIRECTORY is nil, it's used `default-directory'. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2027 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2028 The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2029 processed. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2030 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2031 See also `ebnf-print-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2032 (interactive |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2033 (list (read-file-name "Directory containing EBNF files (print): " |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2034 nil default-directory))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2035 (ebnf-directory 'ebnf-print-buffer directory)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2036 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2037 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2038 ;;;###autoload |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2039 (defun ebnf-print-file (file &optional do-not-kill-buffer-when-done) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2040 "Generate and print a PostScript syntactic chart image of the file FILE. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2041 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2042 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2043 killed after process termination. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2044 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2045 See also `ebnf-print-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2046 (interactive "fEBNF file to generate PostScript and print from: ") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2047 (ebnf-file 'ebnf-print-buffer file do-not-kill-buffer-when-done)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2048 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2049 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2050 ;;;###autoload |
| 27451 | 2051 (defun ebnf-print-buffer (&optional filename) |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2052 "Generate and print a PostScript syntactic chart image of the buffer. |
| 27451 | 2053 |
| 2054 When called with a numeric prefix argument (C-u), prompts the user for | |
| 2055 the name of a file to save the PostScript image in, instead of sending | |
| 2056 it to the printer. | |
| 2057 | |
| 2058 More specifically, the FILENAME argument is treated as follows: if it | |
| 2059 is nil, send the image to the printer. If FILENAME is a string, save | |
| 2060 the PostScript image in a file with that name. If FILENAME is a | |
| 2061 number, prompt the user for the name of the file to save in." | |
| 2062 (interactive (list (ps-print-preprint current-prefix-arg))) | |
| 2063 (ebnf-print-region (point-min) (point-max) filename)) | |
| 2064 | |
| 2065 | |
| 2066 ;;;###autoload | |
| 2067 (defun ebnf-print-region (from to &optional filename) | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2068 "Generate and print a PostScript syntactic chart image of the region. |
| 27451 | 2069 Like `ebnf-print-buffer', but prints just the current region." |
| 2070 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg))) | |
| 2071 (run-hooks 'ebnf-hook) | |
| 2072 (or (ebnf-spool-region from to) | |
| 2073 (ps-do-despool filename))) | |
| 2074 | |
| 2075 | |
| 2076 ;;;###autoload | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2077 (defun ebnf-spool-directory (&optional directory) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2078 "Generate and spool a PostScript syntactic chart image of DIRECTORY. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2079 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2080 If DIRECTORY is nil, it's used `default-directory'. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2081 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2082 The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2083 processed. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2084 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2085 See also `ebnf-spool-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2086 (interactive |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2087 (list (read-file-name "Directory containing EBNF files (spool): " |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2088 nil default-directory))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2089 (ebnf-directory 'ebnf-spool-buffer directory)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2090 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2091 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2092 ;;;###autoload |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2093 (defun ebnf-spool-file (file &optional do-not-kill-buffer-when-done) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2094 "Generate and spool a PostScript syntactic chart image of the file FILE. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2095 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2096 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2097 killed after process termination. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2098 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2099 See also `ebnf-spool-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2100 (interactive "fEBNF file to generate PostScript and spool from: ") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2101 (ebnf-file 'ebnf-spool-buffer file do-not-kill-buffer-when-done)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2102 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2103 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2104 ;;;###autoload |
| 27451 | 2105 (defun ebnf-spool-buffer () |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2106 "Generate and spool a PostScript syntactic chart image of the buffer. |
| 27451 | 2107 Like `ebnf-print-buffer' except that the PostScript image is saved in a |
| 2108 local buffer to be sent to the printer later. | |
| 2109 | |
| 2110 Use the command `ebnf-despool' to send the spooled images to the printer." | |
| 2111 (interactive) | |
| 2112 (ebnf-spool-region (point-min) (point-max))) | |
| 2113 | |
| 2114 | |
| 2115 ;;;###autoload | |
| 2116 (defun ebnf-spool-region (from to) | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2117 "Generate a PostScript syntactic chart image of the region and spool locally. |
| 27451 | 2118 Like `ebnf-spool-buffer', but spools just the current region. |
| 2119 | |
| 2120 Use the command `ebnf-despool' to send the spooled images to the printer." | |
| 2121 (interactive "r") | |
| 2122 (ebnf-generate-region from to 'ebnf-generate)) | |
| 2123 | |
| 2124 | |
| 2125 ;;;###autoload | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2126 (defun ebnf-eps-directory (&optional directory) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2127 "Generate EPS files from EBNF files in DIRECTORY. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2128 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2129 If DIRECTORY is nil, it's used `default-directory'. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2130 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2131 The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2132 processed. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2133 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2134 See also `ebnf-eps-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2135 (interactive |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2136 (list (read-file-name "Directory containing EBNF files (EPS): " |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2137 nil default-directory))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2138 (ebnf-directory 'ebnf-eps-buffer directory)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2139 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2140 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2141 ;;;###autoload |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2142 (defun ebnf-eps-file (file &optional do-not-kill-buffer-when-done) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2143 "Generate an EPS file from EBNF file FILE. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2144 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2145 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2146 killed after EPS generation. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2147 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2148 See also `ebnf-eps-buffer'." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2149 (interactive "fEBNF file to generate EPS file from: ") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2150 (ebnf-file 'ebnf-eps-buffer file do-not-kill-buffer-when-done)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2151 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2152 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2153 ;;;###autoload |
| 27451 | 2154 (defun ebnf-eps-buffer () |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2155 "Generate a PostScript syntactic chart image of the buffer in a EPS file. |
| 27451 | 2156 |
| 2157 Indeed, for each production is generated a EPS file. | |
| 2158 The EPS file name has the following form: | |
| 2159 | |
| 2160 <PREFIX><PRODUCTION>.eps | |
| 2161 | |
| 2162 <PREFIX> is given by variable `ebnf-eps-prefix'. | |
| 2163 The default value is \"ebnf--\". | |
| 2164 | |
| 2165 <PRODUCTION> is the production name. | |
| 2166 The production name is mapped to form a valid file name. | |
| 2167 For example, the production name \"A/B + C\" is mapped to | |
| 2168 \"A_B_+_C\" and the EPS file name used is \"ebnf--A_B_+_C.eps\". | |
| 2169 | |
| 2170 WARNING: It's *NOT* asked any confirmation to override an existing file." | |
| 2171 (interactive) | |
| 2172 (ebnf-eps-region (point-min) (point-max))) | |
| 2173 | |
| 2174 | |
| 2175 ;;;###autoload | |
| 2176 (defun ebnf-eps-region (from to) | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2177 "Generate a PostScript syntactic chart image of the region in a EPS file. |
| 27451 | 2178 |
| 2179 Indeed, for each production is generated a EPS file. | |
| 2180 The EPS file name has the following form: | |
| 2181 | |
| 2182 <PREFIX><PRODUCTION>.eps | |
| 2183 | |
| 2184 <PREFIX> is given by variable `ebnf-eps-prefix'. | |
| 2185 The default value is \"ebnf--\". | |
| 2186 | |
| 2187 <PRODUCTION> is the production name. | |
| 2188 The production name is mapped to form a valid file name. | |
| 2189 For example, the production name \"A/B + C\" is mapped to | |
| 2190 \"A_B_+_C\" and the EPS file name used is \"ebnf--A_B_+_C.eps\". | |
| 2191 | |
| 2192 WARNING: It's *NOT* asked any confirmation to override an existing file." | |
| 2193 (interactive "r") | |
| 2194 (let ((ebnf-eps-executing t)) | |
| 2195 (ebnf-generate-region from to 'ebnf-generate-eps))) | |
| 2196 | |
| 2197 | |
| 2198 ;;;###autoload | |
| 2199 (defalias 'ebnf-despool 'ps-despool) | |
| 2200 | |
| 2201 | |
| 2202 ;;;###autoload | |
| 54191 | 2203 (defun ebnf-syntax-directory (&optional directory) |
| 2204 "Does a syntactic analysis of the files in DIRECTORY. | |
| 2205 | |
| 2206 If DIRECTORY is nil, it's used `default-directory'. | |
| 2207 | |
| 2208 The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are | |
| 2209 processed. | |
| 2210 | |
| 2211 See also `ebnf-syntax-buffer'." | |
| 2212 (interactive | |
| 2213 (list (read-file-name "Directory containing EBNF files (syntax): " | |
| 2214 nil default-directory))) | |
| 2215 (ebnf-directory 'ebnf-syntax-buffer directory)) | |
| 2216 | |
| 2217 | |
| 2218 ;;;###autoload | |
| 2219 (defun ebnf-syntax-file (file &optional do-not-kill-buffer-when-done) | |
| 2220 "Does a syntactic analysis of the FILE. | |
| 2221 | |
| 2222 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't | |
| 54192 | 2223 killed after syntax checking. |
| 54191 | 2224 |
| 2225 See also `ebnf-syntax-buffer'." | |
| 2226 (interactive "fEBNF file to check syntax: ") | |
| 2227 (ebnf-file 'ebnf-syntax-buffer file do-not-kill-buffer-when-done)) | |
| 2228 | |
| 2229 | |
| 2230 ;;;###autoload | |
| 27451 | 2231 (defun ebnf-syntax-buffer () |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2232 "Does a syntactic analysis of the current buffer." |
| 27451 | 2233 (interactive) |
| 2234 (ebnf-syntax-region (point-min) (point-max))) | |
| 2235 | |
| 2236 | |
| 2237 ;;;###autoload | |
| 2238 (defun ebnf-syntax-region (from to) | |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
2239 "Does a syntactic analysis of a region." |
| 27451 | 2240 (interactive "r") |
| 2241 (ebnf-generate-region from to nil)) | |
| 2242 | |
| 2243 | |
| 2244 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 2245 ;; Utilities | |
| 2246 | |
| 2247 | |
| 2248 ;;;###autoload | |
| 2249 (defun ebnf-setup () | |
| 2250 "Return the current ebnf2ps setup." | |
| 2251 (format | |
| 2252 " | |
|
34803
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
2253 ;;; ebnf2ps.el version %s |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
2254 |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2255 \(setq ebnf-special-show-delimiter %S |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2256 ebnf-special-font %s |
| 27451 | 2257 ebnf-special-shape %s |
| 2258 ebnf-special-shadow %S | |
| 2259 ebnf-special-border-width %S | |
| 2260 ebnf-special-border-color %S | |
| 2261 ebnf-except-font %s | |
| 2262 ebnf-except-shape %s | |
| 2263 ebnf-except-shadow %S | |
| 2264 ebnf-except-border-width %S | |
| 2265 ebnf-except-border-color %S | |
| 2266 ebnf-repeat-font %s | |
| 2267 ebnf-repeat-shape %s | |
| 2268 ebnf-repeat-shadow %S | |
| 2269 ebnf-repeat-border-width %S | |
| 2270 ebnf-repeat-border-color %S | |
| 2271 ebnf-terminal-regexp %S | |
| 2272 ebnf-case-fold-search %S | |
| 2273 ebnf-terminal-font %s | |
| 2274 ebnf-terminal-shape %s | |
| 2275 ebnf-terminal-shadow %S | |
| 2276 ebnf-terminal-border-width %S | |
| 2277 ebnf-terminal-border-color %S | |
| 2278 ebnf-non-terminal-font %s | |
| 2279 ebnf-non-terminal-shape %s | |
| 2280 ebnf-non-terminal-shadow %S | |
| 2281 ebnf-non-terminal-border-width %S | |
| 2282 ebnf-non-terminal-border-color %S | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2283 ebnf-production-name-p %S |
| 27451 | 2284 ebnf-sort-production %s |
| 2285 ebnf-production-font %s | |
| 2286 ebnf-arrow-shape %s | |
| 2287 ebnf-chart-shape %s | |
| 2288 ebnf-user-arrow %s | |
| 2289 ebnf-horizontal-orientation %S | |
| 2290 ebnf-horizontal-max-height %S | |
| 2291 ebnf-production-horizontal-space %S | |
| 2292 ebnf-production-vertical-space %S | |
| 2293 ebnf-justify-sequence %s | |
| 2294 ebnf-lex-comment-char ?\\%03o | |
| 2295 ebnf-lex-eop-char ?\\%03o | |
| 2296 ebnf-syntax %s | |
| 2297 ebnf-iso-alternative-p %S | |
| 2298 ebnf-iso-normalize-p %S | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2299 ebnf-file-suffix-regexp %S |
| 27451 | 2300 ebnf-eps-prefix %S |
| 2301 ebnf-entry-percentage %S | |
| 2302 ebnf-color-p %S | |
| 2303 ebnf-line-width %S | |
| 2304 ebnf-line-color %S | |
| 2305 ebnf-debug-ps %S | |
| 2306 ebnf-use-float-format %S | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2307 ebnf-stop-on-error %S |
| 27451 | 2308 ebnf-yac-ignore-error-recovery %S |
| 2309 ebnf-ignore-empty-rule %S | |
| 2310 ebnf-optimize %S) | |
|
34803
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
2311 |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
2312 ;;; ebnf2ps.el - end of settings |
| 27451 | 2313 " |
|
34803
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
2314 ebnf-version |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2315 ebnf-special-show-delimiter |
| 27451 | 2316 (ps-print-quote ebnf-special-font) |
| 2317 (ps-print-quote ebnf-special-shape) | |
| 2318 ebnf-special-shadow | |
| 2319 ebnf-special-border-width | |
| 2320 ebnf-special-border-color | |
| 2321 (ps-print-quote ebnf-except-font) | |
| 2322 (ps-print-quote ebnf-except-shape) | |
| 2323 ebnf-except-shadow | |
| 2324 ebnf-except-border-width | |
| 2325 ebnf-except-border-color | |
| 2326 (ps-print-quote ebnf-repeat-font) | |
| 2327 (ps-print-quote ebnf-repeat-shape) | |
| 2328 ebnf-repeat-shadow | |
| 2329 ebnf-repeat-border-width | |
| 2330 ebnf-repeat-border-color | |
| 2331 ebnf-terminal-regexp | |
| 2332 ebnf-case-fold-search | |
| 2333 (ps-print-quote ebnf-terminal-font) | |
| 2334 (ps-print-quote ebnf-terminal-shape) | |
| 2335 ebnf-terminal-shadow | |
| 2336 ebnf-terminal-border-width | |
| 2337 ebnf-terminal-border-color | |
| 2338 (ps-print-quote ebnf-non-terminal-font) | |
| 2339 (ps-print-quote ebnf-non-terminal-shape) | |
| 2340 ebnf-non-terminal-shadow | |
| 2341 ebnf-non-terminal-border-width | |
| 2342 ebnf-non-terminal-border-color | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2343 ebnf-production-name-p |
| 27451 | 2344 (ps-print-quote ebnf-sort-production) |
| 2345 (ps-print-quote ebnf-production-font) | |
| 2346 (ps-print-quote ebnf-arrow-shape) | |
| 2347 (ps-print-quote ebnf-chart-shape) | |
| 2348 (ps-print-quote ebnf-user-arrow) | |
| 2349 ebnf-horizontal-orientation | |
| 2350 ebnf-horizontal-max-height | |
| 2351 ebnf-production-horizontal-space | |
| 2352 ebnf-production-vertical-space | |
| 2353 (ps-print-quote ebnf-justify-sequence) | |
| 2354 ebnf-lex-comment-char | |
| 2355 ebnf-lex-eop-char | |
| 2356 (ps-print-quote ebnf-syntax) | |
| 2357 ebnf-iso-alternative-p | |
| 2358 ebnf-iso-normalize-p | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2359 ebnf-file-suffix-regexp |
| 27451 | 2360 ebnf-eps-prefix |
| 2361 ebnf-entry-percentage | |
| 2362 ebnf-color-p | |
| 2363 ebnf-line-width | |
| 2364 ebnf-line-color | |
| 2365 ebnf-debug-ps | |
| 2366 ebnf-use-float-format | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2367 ebnf-stop-on-error |
| 27451 | 2368 ebnf-yac-ignore-error-recovery |
| 2369 ebnf-ignore-empty-rule | |
| 2370 ebnf-optimize)) | |
| 2371 | |
| 2372 | |
| 2373 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 2374 ;; Style variables | |
| 2375 | |
| 2376 | |
| 2377 (defvar ebnf-stack-style nil | |
| 2378 "Used in functions `ebnf-reset-style', `ebnf-push-style' and | |
| 2379 `ebnf-pop-style'.") | |
| 2380 | |
| 2381 | |
| 2382 (defvar ebnf-current-style 'default | |
| 2383 "Used in functions `ebnf-apply-style' and `ebnf-push-style'.") | |
| 2384 | |
| 2385 | |
| 2386 (defconst ebnf-style-custom-list | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2387 '(ebnf-special-show-delimiter |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2388 ebnf-special-font |
| 27451 | 2389 ebnf-special-shape |
| 2390 ebnf-special-shadow | |
| 2391 ebnf-special-border-width | |
| 2392 ebnf-special-border-color | |
| 2393 ebnf-except-font | |
| 2394 ebnf-except-shape | |
| 2395 ebnf-except-shadow | |
| 2396 ebnf-except-border-width | |
| 2397 ebnf-except-border-color | |
| 2398 ebnf-repeat-font | |
| 2399 ebnf-repeat-shape | |
| 2400 ebnf-repeat-shadow | |
| 2401 ebnf-repeat-border-width | |
| 2402 ebnf-repeat-border-color | |
| 2403 ebnf-terminal-regexp | |
| 2404 ebnf-case-fold-search | |
| 2405 ebnf-terminal-font | |
| 2406 ebnf-terminal-shape | |
| 2407 ebnf-terminal-shadow | |
| 2408 ebnf-terminal-border-width | |
| 2409 ebnf-terminal-border-color | |
| 2410 ebnf-non-terminal-font | |
| 2411 ebnf-non-terminal-shape | |
| 2412 ebnf-non-terminal-shadow | |
| 2413 ebnf-non-terminal-border-width | |
| 2414 ebnf-non-terminal-border-color | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2415 ebnf-production-name-p |
| 27451 | 2416 ebnf-sort-production |
| 2417 ebnf-production-font | |
| 2418 ebnf-arrow-shape | |
| 2419 ebnf-chart-shape | |
| 2420 ebnf-user-arrow | |
| 2421 ebnf-horizontal-orientation | |
| 2422 ebnf-horizontal-max-height | |
| 2423 ebnf-production-horizontal-space | |
| 2424 ebnf-production-vertical-space | |
| 2425 ebnf-justify-sequence | |
| 2426 ebnf-lex-comment-char | |
| 2427 ebnf-lex-eop-char | |
| 2428 ebnf-syntax | |
| 2429 ebnf-iso-alternative-p | |
| 2430 ebnf-iso-normalize-p | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2431 ebnf-file-suffix-regexp |
| 27451 | 2432 ebnf-eps-prefix |
| 2433 ebnf-entry-percentage | |
| 2434 ebnf-color-p | |
| 2435 ebnf-line-width | |
| 2436 ebnf-line-color | |
| 2437 ebnf-debug-ps | |
| 2438 ebnf-use-float-format | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2439 ebnf-stop-on-error |
| 27451 | 2440 ebnf-yac-ignore-error-recovery |
| 2441 ebnf-ignore-empty-rule | |
| 2442 ebnf-optimize) | |
| 2443 "List of valid symbol custom variable.") | |
| 2444 | |
| 2445 | |
| 2446 (defvar ebnf-style-database | |
| 2447 '(;; EBNF default | |
| 2448 (default | |
| 2449 nil | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2450 (ebnf-special-show-delimiter . t) |
| 27451 | 2451 (ebnf-special-font . '(7 Courier "Black" "Gray95" bold italic)) |
| 2452 (ebnf-special-shape . 'bevel) | |
| 2453 (ebnf-special-shadow . nil) | |
| 2454 (ebnf-special-border-width . 0.5) | |
| 2455 (ebnf-special-border-color . "Black") | |
| 2456 (ebnf-except-font . '(7 Courier "Black" "Gray90" bold italic)) | |
| 2457 (ebnf-except-shape . 'bevel) | |
| 2458 (ebnf-except-shadow . nil) | |
| 2459 (ebnf-except-border-width . 0.25) | |
| 2460 (ebnf-except-border-color . "Black") | |
| 2461 (ebnf-repeat-font . '(7 Courier "Black" "Gray85" bold italic)) | |
| 2462 (ebnf-repeat-shape . 'bevel) | |
| 2463 (ebnf-repeat-shadow . nil) | |
| 2464 (ebnf-repeat-border-width . 0.0) | |
| 2465 (ebnf-repeat-border-color . "Black") | |
| 2466 (ebnf-terminal-regexp . nil) | |
| 2467 (ebnf-case-fold-search . nil) | |
| 2468 (ebnf-terminal-font . '(7 Courier "Black" "White")) | |
| 2469 (ebnf-terminal-shape . 'miter) | |
| 2470 (ebnf-terminal-shadow . nil) | |
| 2471 (ebnf-terminal-border-width . 1.0) | |
| 2472 (ebnf-terminal-border-color . "Black") | |
| 2473 (ebnf-non-terminal-font . '(7 Helvetica "Black" "White")) | |
| 2474 (ebnf-non-terminal-shape . 'round) | |
| 2475 (ebnf-non-terminal-shadow . nil) | |
| 2476 (ebnf-non-terminal-border-width . 1.0) | |
| 2477 (ebnf-non-terminal-border-color . "Black") | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2478 (ebnf-production-name-p . t) |
| 27451 | 2479 (ebnf-sort-production . nil) |
| 2480 (ebnf-production-font . '(10 Helvetica "Black" "White" bold)) | |
| 2481 (ebnf-arrow-shape . 'hollow) | |
| 2482 (ebnf-chart-shape . 'round) | |
| 2483 (ebnf-user-arrow . nil) | |
| 2484 (ebnf-horizontal-orientation . nil) | |
| 2485 (ebnf-horizontal-max-height . nil) | |
| 2486 (ebnf-production-horizontal-space . 0.0) | |
| 2487 (ebnf-production-vertical-space . 0.0) | |
| 2488 (ebnf-justify-sequence . 'center) | |
| 2489 (ebnf-lex-comment-char . ?\;) | |
| 2490 (ebnf-lex-eop-char . ?.) | |
| 2491 (ebnf-syntax . 'ebnf) | |
| 2492 (ebnf-iso-alternative-p . nil) | |
| 2493 (ebnf-iso-normalize-p . nil) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2494 (ebnf-file-suffix-regexp . "\.[Bb][Nn][Ff]$") |
| 27451 | 2495 (ebnf-eps-prefix . "ebnf--") |
| 2496 (ebnf-entry-percentage . 0.5) | |
| 2497 (ebnf-color-p . (or (fboundp 'x-color-values) ; Emacs | |
| 2498 (fboundp 'color-instance-rgb-components))) ; XEmacs | |
| 2499 (ebnf-line-width . 1.0) | |
| 2500 (ebnf-line-color . "Black") | |
| 2501 (ebnf-debug-ps . nil) | |
| 2502 (ebnf-use-float-format . t) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2503 (ebnf-stop-on-error . nil) |
| 27451 | 2504 (ebnf-yac-ignore-error-recovery . nil) |
| 2505 (ebnf-ignore-empty-rule . nil) | |
| 2506 (ebnf-optimize . nil)) | |
| 2507 ;; Happy EBNF default | |
| 2508 (happy | |
| 2509 default | |
| 2510 (ebnf-justify-sequence . 'left) | |
| 2511 (ebnf-lex-comment-char . ?\#) | |
| 2512 (ebnf-lex-eop-char . ?\;)) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2513 ;; ABNF default |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2514 (abnf |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2515 default |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2516 (ebnf-syntax . 'abnf)) |
| 27451 | 2517 ;; ISO EBNF default |
| 2518 (iso-ebnf | |
| 2519 default | |
| 2520 (ebnf-syntax . 'iso-ebnf)) | |
| 2521 ;; Yacc/Bison default | |
| 2522 (yacc | |
| 2523 default | |
| 2524 (ebnf-syntax . 'yacc)) | |
| 54625 | 2525 ;; ebnfx default |
| 2526 (ebnfx | |
| 2527 default | |
| 2528 (ebnf-syntax . 'ebnfx)) | |
| 54714 | 2529 ;; dtd default |
| 2530 (dtd | |
| 2531 default | |
| 2532 (ebnf-syntax . 'dtd)) | |
| 27451 | 2533 ) |
| 2534 "Style database. | |
| 2535 | |
| 2536 Each element has the following form: | |
| 2537 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2538 (NAME INHERITS (VAR . VALUE)...) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2539 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2540 Where: |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2541 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2542 NAME is a symbol name style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2543 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2544 INHERITS is a symbol name style from which the current style inherits |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2545 the context. If INHERITS is nil, means that there is no |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2546 inheritance. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2547 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2548 This is a simple inheritance of style; so if you declare that a |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2549 style A inherits from a style B, all settings of B is applied |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2550 first and then the settings of A is applied. This is useful |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2551 when you wish to modify some aspects of an existing style, but |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2552 at same time wish to keep it unmodified. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2553 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2554 VAR is a valid ebnf2ps symbol custom variable. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2555 See `ebnf-style-custom-list' for valid symbol variable. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2556 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2557 VALUE is a sexp which it'll be evaluated to set the value to VAR. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2558 So, don't forget to quote symbols and constant lists. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2559 See `default' style for an example. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2560 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2561 Don't handle this variable directly. Use functions `ebnf-insert-style', |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2562 `ebnf-delete-style' and `ebnf-merge-style'.") |
| 27451 | 2563 |
| 2564 | |
| 2565 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 2566 ;; Style commands | |
| 2567 | |
| 2568 | |
| 2569 ;;;###autoload | |
| 2570 (defun ebnf-insert-style (name inherits &rest values) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2571 "Insert a new style NAME with inheritance INHERITS and values VALUES. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2572 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2573 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2574 (interactive "SStyle name: \nSStyle inherits from: \nXStyle values: ") |
| 27451 | 2575 (and (assoc name ebnf-style-database) |
| 2576 (error "Style name already exists: %s" name)) | |
| 2577 (or (assoc inherits ebnf-style-database) | |
| 2578 (error "Style inheritance name does'nt exist: %s" inherits)) | |
| 2579 (setq ebnf-style-database | |
| 2580 (cons (cons name (cons inherits (ebnf-check-style-values values))) | |
| 2581 ebnf-style-database))) | |
| 2582 | |
| 2583 | |
| 2584 ;;;###autoload | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2585 (defun ebnf-delete-style (name) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2586 "Delete style NAME. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2587 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2588 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2589 (interactive "SDelete style name: ") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2590 (or (assoc name ebnf-style-database) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2591 (error "Style name doesn't exist: %s" name)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2592 (let ((db ebnf-style-database)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2593 (while db |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2594 (and (eq (nth 1 (car db)) name) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2595 (error "Style name `%s' is inherited by `%s' style" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2596 name (nth 0 (car db)))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2597 (setq db (cdr db)))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2598 (setq ebnf-style-database (assq-delete-all name ebnf-style-database))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2599 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2600 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2601 ;;;###autoload |
| 27451 | 2602 (defun ebnf-merge-style (name &rest values) |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2603 "Merge values of style NAME with style VALUES. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2604 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2605 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2606 (interactive "SStyle name: \nXStyle values: ") |
| 27451 | 2607 (let ((style (or (assoc name ebnf-style-database) |
| 2608 (error "Style name does'nt exist: %s" name))) | |
| 2609 (merge (ebnf-check-style-values values)) | |
| 2610 val elt new check) | |
| 2611 ;; modify value of existing variables | |
| 2612 (setq val (nthcdr 2 style)) | |
| 2613 (while merge | |
| 2614 (setq check (car merge) | |
| 2615 merge (cdr merge) | |
| 2616 elt (assoc (car check) val)) | |
| 2617 (if elt | |
| 2618 (setcdr elt (cdr check)) | |
| 2619 (setq new (cons check new)))) | |
| 2620 ;; insert new variables | |
| 2621 (nconc style (nreverse new)))) | |
| 2622 | |
| 2623 | |
| 2624 ;;;###autoload | |
| 2625 (defun ebnf-apply-style (style) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2626 "Set STYLE as the current style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2627 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2628 It returns the old style symbol. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2629 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2630 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2631 (interactive "SApply style: ") |
| 27451 | 2632 (prog1 |
| 2633 ebnf-current-style | |
| 2634 (and (ebnf-apply-style1 style) | |
| 2635 (setq ebnf-current-style style)))) | |
| 2636 | |
| 2637 | |
| 2638 ;;;###autoload | |
| 2639 (defun ebnf-reset-style (&optional style) | |
| 2640 "Reset current style. | |
| 2641 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2642 It returns the old style symbol. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2643 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2644 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2645 (interactive "SReset style: ") |
| 27451 | 2646 (setq ebnf-stack-style nil) |
| 2647 (ebnf-apply-style (or style 'default))) | |
| 2648 | |
| 2649 | |
| 2650 ;;;###autoload | |
| 2651 (defun ebnf-push-style (&optional style) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2652 "Push the current style and set STYLE as the current style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2653 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2654 It returns the old style symbol. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2655 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2656 See `ebnf-style-database' documentation." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2657 (interactive "SPush style: ") |
| 27451 | 2658 (prog1 |
| 2659 ebnf-current-style | |
| 2660 (setq ebnf-stack-style (cons ebnf-current-style ebnf-stack-style)) | |
| 2661 (and style | |
| 2662 (ebnf-apply-style style)))) | |
| 2663 | |
| 2664 | |
| 2665 ;;;###autoload | |
| 2666 (defun ebnf-pop-style () | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2667 "Pop a style and set it as the current style. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2668 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2669 It returns the old style symbol. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2670 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2671 See `ebnf-style-database' documentation." |
| 27451 | 2672 (interactive) |
| 2673 (prog1 | |
| 2674 (ebnf-apply-style (car ebnf-stack-style)) | |
| 2675 (setq ebnf-stack-style (cdr ebnf-stack-style)))) | |
| 2676 | |
| 2677 | |
| 2678 (defun ebnf-apply-style1 (style) | |
| 2679 (let ((value (cdr (assoc style ebnf-style-database)))) | |
| 2680 (prog1 | |
| 2681 value | |
| 2682 (and (car value) (ebnf-apply-style1 (car value))) | |
| 2683 (while (setq value (cdr value)) | |
| 2684 (set (caar value) (eval (cdar value))))))) | |
| 2685 | |
| 2686 | |
| 2687 (defun ebnf-check-style-values (values) | |
| 2688 (let (style) | |
| 2689 (while values | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2690 (and (memq (caar values) ebnf-style-custom-list) |
| 27451 | 2691 (setq style (cons (car values) style))) |
| 2692 (setq values (cdr values))) | |
| 2693 (nreverse style))) | |
| 2694 | |
| 2695 | |
| 2696 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 2697 ;; Internal variables | |
| 2698 | |
| 2699 | |
| 2700 (defvar ebnf-eps-buffer-name " *EPS*") | |
| 2701 (defvar ebnf-parser-func nil) | |
| 2702 (defvar ebnf-eps-executing nil) | |
| 2703 (defvar ebnf-eps-upper-x 0.0) | |
| 2704 (make-variable-buffer-local 'ebnf-eps-upper-x) | |
| 2705 (defvar ebnf-eps-upper-y 0.0) | |
| 2706 (make-variable-buffer-local 'ebnf-eps-upper-y) | |
| 2707 (defvar ebnf-eps-prod-width 0.0) | |
| 2708 (make-variable-buffer-local 'ebnf-eps-prod-width) | |
| 2709 (defvar ebnf-eps-max-height 0.0) | |
| 2710 (make-variable-buffer-local 'ebnf-eps-max-height) | |
| 2711 (defvar ebnf-eps-max-width 0.0) | |
| 2712 (make-variable-buffer-local 'ebnf-eps-max-width) | |
| 2713 | |
| 2714 | |
| 2715 (defvar ebnf-eps-context nil | |
| 2716 "List of EPS file name during parsing. | |
| 2717 | |
| 2718 See section \"Actions in Comments\" in ebnf2ps documentation.") | |
| 2719 | |
| 2720 | |
| 2721 (defvar ebnf-eps-production-list nil | |
| 2722 "Alist associating production name with EPS file name list. | |
| 2723 | |
| 2724 Each element has the following form: | |
| 2725 | |
| 2726 (PRODUCTION EPS-FILENAME...) | |
| 2727 | |
| 2728 PRODUCTION is the production name. | |
| 2729 EPS-FILENAME is the EPS file name. | |
| 2730 | |
| 2731 It's generated during parsing and used during EPS generation. | |
| 2732 | |
| 2733 See `ebnf-eps-context' and section \"Actions in Comments\" in ebnf2ps | |
| 2734 documentation.") | |
| 2735 | |
| 2736 | |
| 2737 (defconst ebnf-arrow-shape-alist | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2738 '((none . 0) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2739 (semi-up . 1) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2740 (semi-down . 2) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2741 (simple . 3) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2742 (transparent . 4) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2743 (hollow . 5) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2744 (full . 6) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2745 (semi-up-hollow . 7) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2746 (semi-up-full . 8) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2747 (semi-down-hollow . 9) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2748 (semi-down-full . 10) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2749 (user . 11)) |
| 27451 | 2750 "Alist associating values for `ebnf-arrow-shape'. |
| 2751 | |
| 2752 See documentation for `ebnf-arrow-shape'.") | |
| 2753 | |
| 2754 | |
| 2755 (defconst ebnf-terminal-shape-alist | |
| 2756 '((miter . 0) | |
| 2757 (round . 1) | |
| 2758 (bevel . 2)) | |
| 2759 "Alist associating values from `ebnf-terminal-shape' to a bit vector. | |
| 2760 | |
| 2761 See documentation for `ebnf-terminal-shape', `ebnf-non-terminal-shape' and | |
| 2762 `ebnf-chart-shape'.") | |
| 2763 | |
| 2764 | |
| 2765 (defvar ebnf-limit nil) | |
| 2766 (defvar ebnf-action nil) | |
| 2767 (defvar ebnf-action-list nil) | |
| 2768 | |
| 2769 | |
| 2770 (defvar ebnf-default-p nil) | |
| 2771 | |
| 2772 | |
| 2773 (defvar ebnf-font-height-P 0) | |
| 2774 (defvar ebnf-font-height-T 0) | |
| 2775 (defvar ebnf-font-height-NT 0) | |
| 2776 (defvar ebnf-font-height-S 0) | |
| 2777 (defvar ebnf-font-height-E 0) | |
| 2778 (defvar ebnf-font-height-R 0) | |
| 2779 (defvar ebnf-font-width-P 0) | |
| 2780 (defvar ebnf-font-width-T 0) | |
| 2781 (defvar ebnf-font-width-NT 0) | |
| 2782 (defvar ebnf-font-width-S 0) | |
| 2783 (defvar ebnf-font-width-E 0) | |
| 2784 (defvar ebnf-font-width-R 0) | |
| 2785 (defvar ebnf-space-T 0) | |
| 2786 (defvar ebnf-space-NT 0) | |
| 2787 (defvar ebnf-space-S 0) | |
| 2788 (defvar ebnf-space-E 0) | |
| 2789 (defvar ebnf-space-R 0) | |
| 2790 | |
| 2791 | |
| 2792 (defvar ebnf-basic-width 0) | |
| 2793 (defvar ebnf-basic-height 0) | |
| 2794 (defvar ebnf-vertical-space 0) | |
| 2795 (defvar ebnf-horizontal-space 0) | |
| 2796 | |
| 2797 | |
| 2798 (defvar ebnf-settings nil) | |
| 2799 (defvar ebnf-fonts-required nil) | |
| 2800 | |
| 2801 | |
| 2802 (defconst ebnf-debug | |
| 2803 " | |
| 2804 % === begin EBNF procedures to help debugging | |
| 2805 | |
| 2806 % Mark visually current point: string debug | |
| 2807 /debug | |
| 2808 {/-s- exch def | |
| 2809 currentpoint | |
| 2810 gsave -s- show grestore | |
| 2811 gsave | |
| 2812 20 20 rlineto | |
| 2813 0 -40 rlineto | |
| 2814 -40 40 rlineto | |
| 2815 0 -40 rlineto | |
| 2816 20 20 rlineto | |
| 2817 stroke | |
| 2818 grestore | |
| 2819 moveto | |
| 2820 }def | |
| 2821 | |
| 2822 % Show number value: number string debug-number | |
| 2823 /debug-number | |
| 2824 {gsave | |
| 2825 20 0 rmoveto show ([) show 60 string cvs show (]) show | |
| 2826 grestore | |
| 2827 }def | |
| 2828 | |
| 2829 % === end EBNF procedures to help debugging | |
| 2830 | |
| 2831 " | |
| 2832 "This is intended to help debugging PostScript programming.") | |
| 2833 | |
| 2834 | |
| 2835 (defconst ebnf-prologue | |
| 2836 " | |
| 2837 % === begin EBNF engine | |
| 2838 | |
| 2839 % --- Basic Definitions | |
| 2840 | |
| 2841 /fS F | |
| 2842 /SpaceS FontHeight 0.5 mul def | |
| 2843 /HeightS FontHeight FontHeight add def | |
| 2844 | |
| 2845 /fE F | |
| 2846 /SpaceE FontHeight 0.5 mul def | |
| 2847 /HeightE FontHeight FontHeight add def | |
| 2848 | |
| 2849 /fR F | |
| 2850 /SpaceR FontHeight 0.5 mul def | |
| 2851 /HeightR FontHeight FontHeight add def | |
| 2852 | |
| 2853 /fT F | |
| 2854 /SpaceT FontHeight 0.5 mul def | |
| 2855 /HeightT FontHeight FontHeight add def | |
| 2856 | |
| 2857 /fNT F | |
| 2858 /SpaceNT FontHeight 0.5 mul def | |
| 2859 /HeightNT FontHeight FontHeight add def | |
| 2860 | |
| 2861 /T HeightT HeightNT add 0.5 mul def | |
| 2862 /hT T 0.5 mul def | |
| 2863 /hT2 hT 0.5 mul def | |
| 2864 /hT4 hT 0.25 mul def | |
| 2865 | |
| 2866 /Er 0.1 def % Error factor | |
| 2867 | |
| 2868 | |
| 2869 /c{currentpoint}bind def | |
| 2870 /xyi{/xi c /yi exch def def}bind def | |
| 2871 /xyo{/xo c /yo exch def def}bind def | |
| 2872 /xyp{/xp c /yp exch def def}bind def | |
| 2873 /xyt{/xt c /yt exch def def}bind def | |
| 2874 | |
| 2875 % vertical movement: x y height vm | |
| 2876 /vm{add moveto}bind def | |
| 2877 | |
| 2878 % horizontal movement: x y width hm | |
| 2879 /hm{3 -1 roll exch add exch moveto}bind def | |
| 2880 | |
| 2881 % set color: [R G B] SetRGB | |
| 2882 /SetRGB{aload pop setrgbcolor}bind def | |
| 2883 | |
| 2884 % filling gray area: gray-scale FillGray | |
| 2885 /FillGray{gsave setgray fill grestore}bind def | |
| 2886 | |
| 2887 % filling color area: [R G B] FillRGB | |
| 2888 /FillRGB{gsave SetRGB fill grestore}bind def | |
| 2889 | |
| 2890 /Stroke{LineWidth setlinewidth LineColor SetRGB stroke}bind def | |
| 2891 /StrokeShape{borderwidth setlinewidth bordercolor SetRGB stroke}bind def | |
| 2892 /Gstroke{gsave Stroke grestore}bind def | |
| 2893 | |
| 2894 % Empty Line: width EL | |
| 2895 /EL{0 rlineto Gstroke}bind def | |
| 2896 | |
| 2897 % --- Arrows | |
| 2898 | |
| 2899 /Down{hT2 neg hT4 neg rlineto}bind def | |
| 2900 | |
| 2901 /Arrow | |
| 2902 {hT2 neg hT4 rmoveto | |
| 2903 hT2 hT4 neg rlineto | |
| 2904 Down | |
| 2905 }bind def | |
| 2906 | |
| 2907 /ArrowPath{c newpath moveto Arrow closepath}bind def | |
| 2908 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2909 /UpPath |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2910 {c newpath moveto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2911 hT2 neg 0 rmoveto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2912 0 hT4 rlineto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2913 hT2 hT4 neg rlineto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2914 closepath |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2915 }bind def |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2916 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2917 /DownPath |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2918 {c newpath moveto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2919 hT2 neg 0 rmoveto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2920 0 hT4 neg rlineto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2921 hT2 hT4 rlineto |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2922 closepath |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2923 }bind def |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2924 |
| 27451 | 2925 %>Right Arrow: RA |
| 2926 % \\ | |
| 2927 % *---+ | |
| 2928 % / | |
| 2929 /RA-vector | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2930 [{} % 0 - none |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2931 {hT2 neg hT4 rlineto} % 1 - semi-up |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2932 {Down} % 2 - semi-down |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2933 {Arrow} % 3 - simple |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2934 {Gstroke ArrowPath} % 4 - transparent |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2935 {Gstroke ArrowPath 1 FillGray} % 5 - hollow |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2936 {Gstroke ArrowPath LineColor FillRGB} % 6 - full |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2937 {Gstroke UpPath 1 FillGray} % 7 - semi-up-hollow |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2938 {Gstroke UpPath LineColor FillRGB} % 8 - semi-up-full |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2939 {Gstroke DownPath 1 FillGray} % 9 - semi-down-hollow |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2940 {Gstroke DownPath LineColor FillRGB} % 10 - semi-down-full |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2941 {Gstroke gsave UserArrow grestore} % 11 - user |
| 27451 | 2942 ]def |
| 2943 | |
| 2944 /RA | |
| 2945 {hT 0 rlineto | |
| 2946 c | |
| 2947 RA-vector ArrowShape get exec | |
| 2948 Gstroke | |
| 2949 moveto | |
| 2950 }def | |
| 2951 | |
| 2952 % rotation DrawArrow | |
| 2953 /DrawArrow | |
| 2954 {gsave | |
| 2955 0 0 translate | |
| 2956 rotate | |
| 2957 RA | |
| 2958 c | |
| 2959 grestore | |
| 2960 rmoveto | |
| 2961 }def | |
| 2962 | |
| 2963 %>Left Arrow: LA | |
| 2964 % / | |
| 2965 % +---* | |
| 2966 % \\ | |
| 2967 /LA{180 DrawArrow}def | |
| 2968 | |
| 2969 %>Up Arrow: UA | |
| 2970 % + | |
| 2971 % /|\\ | |
| 2972 % | | |
| 2973 % * | |
| 2974 /UA{90 DrawArrow}def | |
| 2975 | |
| 2976 %>Down Arrow: DA | |
| 2977 % * | |
| 2978 % | | |
| 2979 % \\|/ | |
| 2980 % + | |
| 2981 /DA{270 DrawArrow}def | |
| 2982 | |
| 2983 % --- Corners | |
| 2984 | |
| 2985 %>corner Right Descendent: height arrow corner_RD | |
| 2986 % _ | arrow | |
| 2987 % / height > 0 | 0 - none | |
| 2988 % | | 1 - right | |
| 2989 % * ---------- | 2 - left | |
| 2990 % | | 3 - vertical | |
| 2991 % \\ height < 0 | | |
| 2992 % - | | |
| 2993 /cRD0-vector | |
| 2994 [% 0 - none | |
| 2995 {0 h rlineto | |
| 2996 hT 0 rlineto} | |
| 2997 % 1 - right | |
| 2998 {0 h rlineto | |
| 2999 RA} | |
| 3000 % 2 - left | |
| 3001 {hT 0 rmoveto xyi | |
| 3002 LA | |
| 3003 0 h neg rlineto | |
| 3004 xi yi moveto} | |
| 3005 % 3 - vertical | |
| 3006 {hT h rmoveto xyi | |
| 3007 hT neg 0 rlineto | |
| 3008 h 0 gt{DA}{UA}ifelse | |
| 3009 xi yi moveto} | |
| 3010 ]def | |
| 3011 | |
| 3012 /cRD-vector | |
| 3013 [{cRD0-vector arrow get exec} % 0 - miter | |
| 3014 {0 0 0 h hT h rcurveto} % 1 - rounded | |
| 3015 {hT h rlineto} % 2 - bevel | |
| 3016 ]def | |
| 3017 | |
| 3018 /corner_RD | |
| 3019 {/arrow exch def /h exch def | |
| 3020 cRD-vector ChartShape get exec | |
| 3021 Gstroke | |
| 3022 }def | |
| 3023 | |
| 3024 %>corner Right Ascendent: height arrow corner_RA | |
| 3025 % | arrow | |
| 3026 % | height > 0 | 0 - none | |
| 3027 % / | 1 - right | |
| 3028 % *- ---------- | 2 - left | |
| 3029 % \\ | 3 - vertical | |
| 3030 % | height < 0 | | |
| 3031 % | | |
| 3032 /cRA0-vector | |
| 3033 [% 0 - none | |
| 3034 {hT 0 rlineto | |
| 3035 0 h rlineto} | |
| 3036 % 1 - right | |
| 3037 {RA | |
| 3038 0 h rlineto} | |
| 3039 % 2 - left | |
| 3040 {hT h rmoveto xyi | |
| 3041 0 h neg rlineto | |
| 3042 LA | |
| 3043 xi yi moveto} | |
| 3044 % 3 - vertical | |
| 3045 {hT h rmoveto xyi | |
| 3046 h 0 gt{DA}{UA}ifelse | |
| 3047 hT neg 0 rlineto | |
| 3048 xi yi moveto} | |
| 3049 ]def | |
| 3050 | |
| 3051 /cRA-vector | |
| 3052 [{cRA0-vector arrow get exec} % 0 - miter | |
| 3053 {0 0 hT 0 hT h rcurveto} % 1 - rounded | |
| 3054 {hT h rlineto} % 2 - bevel | |
| 3055 ]def | |
| 3056 | |
| 3057 /corner_RA | |
| 3058 {/arrow exch def /h exch def | |
| 3059 cRA-vector ChartShape get exec | |
| 3060 Gstroke | |
| 3061 }def | |
| 3062 | |
| 3063 %>corner Left Descendent: height arrow corner_LD | |
| 3064 % _ | arrow | |
| 3065 % \\ height > 0 | 0 - none | |
| 3066 % | | 1 - right | |
| 3067 % * ---------- | 2 - left | |
| 3068 % | | 3 - vertical | |
| 3069 % / height < 0 | | |
| 3070 % - | | |
| 3071 /cLD0-vector | |
| 3072 [% 0 - none | |
| 3073 {0 h rlineto | |
| 3074 hT neg 0 rlineto} | |
| 3075 % 1 - right | |
| 3076 {hT neg h rmoveto xyi | |
| 3077 RA | |
| 3078 0 h neg rlineto | |
| 3079 xi yi moveto} | |
| 3080 % 2 - left | |
| 3081 {0 h rlineto | |
| 3082 LA} | |
| 3083 % 3 - vertical | |
| 3084 {hT neg h rmoveto xyi | |
| 3085 hT 0 rlineto | |
| 3086 h 0 gt{DA}{UA}ifelse | |
| 3087 xi yi moveto} | |
| 3088 ]def | |
| 3089 | |
| 3090 /cLD-vector | |
| 3091 [{cLD0-vector arrow get exec} % 0 - miter | |
| 3092 {0 0 0 h hT neg h rcurveto} % 1 - rounded | |
| 3093 {hT neg h rlineto} % 2 - bevel | |
| 3094 ]def | |
| 3095 | |
| 3096 /corner_LD | |
| 3097 {/arrow exch def /h exch def | |
| 3098 cLD-vector ChartShape get exec | |
| 3099 Gstroke | |
| 3100 }def | |
| 3101 | |
| 3102 %>corner Left Ascendent: height arrow corner_LA | |
| 3103 % | arrow | |
| 3104 % | height > 0 | 0 - none | |
| 3105 % \\ | 1 - right | |
| 3106 % -* ---------- | 2 - left | |
| 3107 % / | 3 - vertical | |
| 3108 % | height < 0 | | |
| 3109 % | | |
| 3110 /cLA0-vector | |
| 3111 [% 0 - none | |
| 3112 {hT neg 0 rlineto | |
| 3113 0 h rlineto} | |
| 3114 % 1 - right | |
| 3115 {hT neg h rmoveto xyi | |
| 3116 0 h neg rlineto | |
| 3117 RA | |
| 3118 xi yi moveto} | |
| 3119 % 2 - left | |
| 3120 {LA | |
| 3121 0 h rlineto} | |
| 3122 % 3 - vertical | |
| 3123 {hT neg h rmoveto xyi | |
| 3124 h 0 gt{DA}{UA}ifelse | |
| 3125 hT 0 rlineto | |
| 3126 xi yi moveto} | |
| 3127 ]def | |
| 3128 | |
| 3129 /cLA-vector | |
| 3130 [{cLA0-vector arrow get exec} % 0 - miter | |
| 3131 {0 0 hT neg 0 hT neg h rcurveto} % 1 - rounded | |
| 3132 {hT neg h rlineto} % 2 - bevel | |
| 3133 ]def | |
| 3134 | |
| 3135 /corner_LA | |
| 3136 {/arrow exch def /h exch def | |
| 3137 cLA-vector ChartShape get exec | |
| 3138 Gstroke | |
| 3139 }def | |
| 3140 | |
| 3141 % --- Flow Stuff | |
| 3142 | |
| 3143 % height prepare_height |- line_height corner_height corner_height | |
| 3144 /prepare_height | |
| 3145 {dup 0 gt | |
| 3146 {T sub hT} | |
| 3147 {T add hT neg}ifelse | |
| 3148 dup | |
| 3149 }def | |
| 3150 | |
| 3151 %>Left Alternative: height LAlt | |
| 3152 % _ | |
| 3153 % / | |
| 3154 % | height > 0 | |
| 3155 % | | |
| 3156 % / | |
| 3157 % *- ---------- | |
| 3158 % \\ | |
| 3159 % | | |
| 3160 % | height < 0 | |
| 3161 % \\ | |
| 3162 % - | |
| 3163 /LAlt | |
| 3164 {dup 0 eq | |
| 3165 {T exch rlineto} | |
| 3166 {dup abs T lt | |
| 3167 {0.5 mul dup | |
| 3168 1 corner_RA | |
| 3169 0 corner_RD} | |
| 3170 {prepare_height | |
| 3171 1 corner_RA | |
| 3172 exch 0 exch rlineto | |
| 3173 0 corner_RD | |
| 3174 }ifelse | |
| 3175 }ifelse | |
| 3176 }def | |
| 3177 | |
| 3178 %>Left Loop: height LLoop | |
| 3179 % _ | |
| 3180 % / | |
| 3181 % | height > 0 | |
| 3182 % | | |
| 3183 % \\ | |
| 3184 % -* ---------- | |
| 3185 % / | |
| 3186 % | | |
| 3187 % | height < 0 | |
| 3188 % \\ | |
| 3189 % - | |
| 3190 /LLoop | |
| 3191 {prepare_height | |
| 3192 3 corner_LA | |
| 3193 exch 0 exch rlineto | |
| 3194 0 corner_RD | |
| 3195 }def | |
| 3196 | |
| 3197 %>Right Alternative: height RAlt | |
| 3198 % _ | |
| 3199 % \\ | |
| 3200 % | height > 0 | |
| 3201 % | | |
| 3202 % \\ | |
| 3203 % -* ---------- | |
| 3204 % / | |
| 3205 % | | |
| 3206 % | height < 0 | |
| 3207 % / | |
| 3208 % - | |
| 3209 /RAlt | |
| 3210 {dup 0 eq | |
| 3211 {T neg exch rlineto} | |
| 3212 {dup abs T lt | |
| 3213 {0.5 mul dup | |
| 3214 1 corner_LA | |
| 3215 0 corner_LD} | |
| 3216 {prepare_height | |
| 3217 1 corner_LA | |
| 3218 exch 0 exch rlineto | |
| 3219 0 corner_LD | |
| 3220 }ifelse | |
| 3221 }ifelse | |
| 3222 }def | |
| 3223 | |
| 3224 %>Right Loop: height RLoop | |
| 3225 % _ | |
| 3226 % \\ | |
| 3227 % | height > 0 | |
| 3228 % | | |
| 3229 % / | |
| 3230 % *- ---------- | |
| 3231 % \\ | |
| 3232 % | | |
| 3233 % | height < 0 | |
| 3234 % / | |
| 3235 % - | |
| 3236 /RLoop | |
| 3237 {prepare_height | |
| 3238 1 corner_RA | |
| 3239 exch 0 exch rlineto | |
| 3240 0 corner_LD | |
| 3241 }def | |
| 3242 | |
| 3243 % --- Terminal, Non-terminal and Special Basics | |
| 3244 | |
| 3245 % string width prepare-width |- string | |
| 3246 /prepare-width | |
| 3247 {/width exch def | |
| 3248 dup stringwidth pop space add space add width exch sub 0.5 mul | |
| 3249 /w exch def | |
| 3250 }def | |
| 3251 | |
| 3252 % string width begin-right | |
| 3253 /begin-right | |
| 3254 {xyo | |
| 3255 prepare-width | |
| 3256 w hT sub EL | |
| 3257 RA | |
| 3258 }def | |
| 3259 | |
| 3260 % end-right | |
| 3261 /end-right | |
| 3262 {xo width add Er add yo moveto | |
| 3263 w Er add neg EL | |
| 3264 xo yo moveto | |
| 3265 }def | |
| 3266 | |
| 3267 % string width begin-left | |
| 3268 /begin-left | |
| 3269 {xyo | |
| 3270 prepare-width | |
| 3271 w EL | |
| 3272 }def | |
| 3273 | |
| 3274 % end-left | |
| 3275 /end-left | |
| 3276 {xo width add Er add yo moveto | |
| 3277 hT w sub Er add EL | |
| 3278 LA | |
| 3279 xo yo moveto | |
| 3280 }def | |
| 3281 | |
| 3282 /ShapePath-vector | |
| 3283 [% 0 - miter | |
| 3284 {xx yy moveto | |
| 3285 xx YY lineto | |
| 3286 XX YY lineto | |
| 3287 XX yy lineto} | |
| 3288 % 1 - rounded | |
| 3289 {/half YY yy sub 0.5 mul abs def | |
| 3290 xx half add YY moveto | |
| 3291 0 0 half neg 0 half neg half neg rcurveto | |
| 3292 0 0 0 half neg half half neg rcurveto | |
| 3293 XX xx sub abs half sub half sub 0 rlineto | |
| 3294 0 0 half 0 half half rcurveto | |
| 3295 0 0 0 half half neg half rcurveto} | |
| 3296 % 2 - bevel | |
| 3297 {/quarter YY yy sub 0.25 mul abs def | |
| 3298 xx quarter add YY moveto | |
| 3299 quarter neg quarter neg rlineto | |
| 3300 0 quarter quarter add neg rlineto | |
| 3301 quarter quarter neg rlineto | |
| 3302 XX xx sub abs quarter sub quarter sub 0 rlineto | |
| 3303 quarter quarter rlineto | |
| 3304 0 quarter quarter add rlineto | |
| 3305 quarter neg quarter rlineto} | |
| 3306 ]def | |
| 3307 | |
| 3308 /doShapePath | |
| 3309 {newpath | |
| 3310 ShapePath-vector shape get exec | |
| 3311 closepath | |
| 3312 }def | |
| 3313 | |
| 3314 /doShapeShadow | |
| 3315 {gsave | |
| 3316 Xshadow Xshadow add Xshadow add | |
| 3317 Yshadow Yshadow add Yshadow add translate | |
| 3318 doShapePath | |
| 3319 0.9 FillGray | |
| 3320 grestore | |
| 3321 }def | |
| 3322 | |
| 3323 /doShape | |
| 3324 {gsave | |
| 3325 doShapePath | |
| 3326 shapecolor FillRGB | |
| 3327 StrokeShape | |
| 3328 grestore | |
| 3329 }def | |
| 3330 | |
| 3331 % string SBound |- string | |
| 3332 /SBound | |
| 3333 {/xx c dup /yy exch def | |
| 3334 FontHeight add /YY exch def def | |
| 3335 dup stringwidth pop xx add /XX exch def | |
| 3336 Effect 8 and 0 ne | |
| 3337 {/yy yy YShadow add def | |
| 3338 /XX XX XShadow add def | |
| 3339 }if | |
| 3340 }def | |
| 3341 | |
| 3342 % string SBox | |
| 3343 /SBox | |
| 3344 {gsave | |
| 3345 c space sub moveto | |
| 3346 SBound | |
| 3347 /XX XX space add space add def | |
| 3348 /YY YY space add def | |
| 3349 /yy yy space sub def | |
| 3350 shadow{doShapeShadow}if | |
| 3351 doShape | |
| 3352 space Descent abs rmoveto | |
| 3353 foreground SetRGB S | |
| 3354 grestore | |
| 3355 }def | |
| 3356 | |
| 3357 % --- Terminal | |
| 3358 | |
| 3359 % TeRminal: string TR | |
| 3360 /TR | |
| 3361 {/Effect EffectT def | |
| 3362 /shape ShapeT def | |
| 3363 /shapecolor BackgroundT def | |
| 3364 /borderwidth BorderWidthT def | |
| 3365 /bordercolor BorderColorT def | |
| 3366 /foreground ForegroundT def | |
| 3367 /shadow ShadowT def | |
| 3368 SBox | |
| 3369 }def | |
| 3370 | |
| 3371 %>Right Terminal: string width RT |- x y | |
| 3372 /RT | |
| 3373 {xyt | |
| 3374 /fT F | |
| 3375 /space SpaceT def | |
| 3376 begin-right | |
| 3377 TR | |
| 3378 end-right | |
| 3379 xt yt | |
| 3380 }def | |
| 3381 | |
| 3382 %>Left Terminal: string width LT |- x y | |
| 3383 /LT | |
| 3384 {xyt | |
| 3385 /fT F | |
| 3386 /space SpaceT def | |
| 3387 begin-left | |
| 3388 TR | |
| 3389 end-left | |
| 3390 xt yt | |
| 3391 }def | |
| 3392 | |
| 3393 %>Right Terminal Default: string width RTD |- x y | |
| 3394 /RTD | |
| 3395 {/-save- BorderWidthT def | |
| 3396 /BorderWidthT BorderWidthT DefaultWidth add def | |
| 3397 RT | |
| 3398 /BorderWidthT -save- def | |
| 3399 }def | |
| 3400 | |
| 3401 %>Left Terminal Default: string width LTD |- x y | |
| 3402 /LTD | |
| 3403 {/-save- BorderWidthT def | |
| 3404 /BorderWidthT BorderWidthT DefaultWidth add def | |
| 3405 LT | |
| 3406 /BorderWidthT -save- def | |
| 3407 }def | |
| 3408 | |
| 3409 % --- Non-Terminal | |
| 3410 | |
| 3411 % Non-Terminal: string NT | |
| 3412 /NT | |
| 3413 {/Effect EffectNT def | |
| 3414 /shape ShapeNT def | |
| 3415 /shapecolor BackgroundNT def | |
| 3416 /borderwidth BorderWidthNT def | |
| 3417 /bordercolor BorderColorNT def | |
| 3418 /foreground ForegroundNT def | |
| 3419 /shadow ShadowNT def | |
| 3420 SBox | |
| 3421 }def | |
| 3422 | |
| 3423 %>Right Non-Terminal: string width RNT |- x y | |
| 3424 /RNT | |
| 3425 {xyt | |
| 3426 /fNT F | |
| 3427 /space SpaceNT def | |
| 3428 begin-right | |
| 3429 NT | |
| 3430 end-right | |
| 3431 xt yt | |
| 3432 }def | |
| 3433 | |
| 3434 %>Left Non-Terminal: string width LNT |- x y | |
| 3435 /LNT | |
| 3436 {xyt | |
| 3437 /fNT F | |
| 3438 /space SpaceNT def | |
| 3439 begin-left | |
| 3440 NT | |
| 3441 end-left | |
| 3442 xt yt | |
| 3443 }def | |
| 3444 | |
| 3445 %>Right Non-Terminal Default: string width RNTD |- x y | |
| 3446 /RNTD | |
| 3447 {/-save- BorderWidthNT def | |
| 3448 /BorderWidthNT BorderWidthNT DefaultWidth add def | |
| 3449 RNT | |
| 3450 /BorderWidthNT -save- def | |
| 3451 }def | |
| 3452 | |
| 3453 %>Left Non-Terminal Default: string width LNTD |- x y | |
| 3454 /LNTD | |
| 3455 {/-save- BorderWidthNT def | |
| 3456 /BorderWidthNT BorderWidthNT DefaultWidth add def | |
| 3457 LNT | |
| 3458 /BorderWidthNT -save- def | |
| 3459 }def | |
| 3460 | |
| 3461 % --- Special | |
| 3462 | |
| 3463 % SPecial: string SP | |
| 3464 /SP | |
| 3465 {/Effect EffectS def | |
| 3466 /shape ShapeS def | |
| 3467 /shapecolor BackgroundS def | |
| 3468 /borderwidth BorderWidthS def | |
| 3469 /bordercolor BorderColorS def | |
| 3470 /foreground ForegroundS def | |
| 3471 /shadow ShadowS def | |
| 3472 SBox | |
| 3473 }def | |
| 3474 | |
| 3475 %>Right SPecial: string width RSP |- x y | |
| 3476 /RSP | |
| 3477 {xyt | |
| 3478 /fS F | |
| 3479 /space SpaceS def | |
| 3480 begin-right | |
| 3481 SP | |
| 3482 end-right | |
| 3483 xt yt | |
| 3484 }def | |
| 3485 | |
| 3486 %>Left SPecial: string width LSP |- x y | |
| 3487 /LSP | |
| 3488 {xyt | |
| 3489 /fS F | |
| 3490 /space SpaceS def | |
| 3491 begin-left | |
| 3492 SP | |
| 3493 end-left | |
| 3494 xt yt | |
| 3495 }def | |
| 3496 | |
| 3497 %>Right SPecial Default: string width RSPD |- x y | |
| 3498 /RSPD | |
| 3499 {/-save- BorderWidthS def | |
| 3500 /BorderWidthS BorderWidthS DefaultWidth add def | |
| 3501 RSP | |
| 3502 /BorderWidthS -save- def | |
| 3503 }def | |
| 3504 | |
| 3505 %>Left SPecial Default: string width LSPD |- x y | |
| 3506 /LSPD | |
| 3507 {/-save- BorderWidthS def | |
| 3508 /BorderWidthS BorderWidthS DefaultWidth add def | |
| 3509 LSP | |
| 3510 /BorderWidthS -save- def | |
| 3511 }def | |
| 3512 | |
| 3513 % --- Repeat and Except basics | |
| 3514 | |
| 3515 /begin-direction | |
| 3516 {/w width rwidth sub 0.5 mul def | |
| 3517 width 0 rmoveto}def | |
| 3518 | |
| 3519 /end-direction | |
| 3520 {gsave | |
| 3521 /xx c entry add /YY exch def def | |
| 3522 /yy YY height sub def | |
| 3523 /XX xx rwidth add def | |
| 3524 shadow{doShapeShadow}if | |
| 3525 doShape | |
| 3526 grestore | |
| 3527 }def | |
| 3528 | |
| 3529 /right-direction | |
| 3530 {begin-direction | |
| 3531 w neg EL | |
| 3532 xt yt moveto | |
| 3533 w hT sub EL RA | |
| 3534 end-direction | |
| 3535 }def | |
| 3536 | |
| 3537 /left-direction | |
| 3538 {begin-direction | |
| 3539 hT w sub EL LA | |
| 3540 xt yt moveto | |
| 3541 w EL | |
| 3542 end-direction | |
| 3543 }def | |
| 3544 | |
| 3545 % --- Repeat | |
| 3546 | |
| 3547 % entry height width rwidth begin-repeat | |
| 3548 /begin-repeat | |
| 3549 {/rwidth exch def | |
| 3550 /width exch def | |
| 3551 /height exch def | |
| 3552 /entry exch def | |
| 3553 /fR F | |
| 3554 /space SpaceR def | |
| 3555 /Effect EffectR def | |
| 3556 /shape ShapeR def | |
| 3557 /shapecolor BackgroundR def | |
| 3558 /borderwidth BorderWidthR def | |
| 3559 /bordercolor BorderColorR def | |
| 3560 /foreground ForegroundR def | |
| 3561 /shadow ShadowR def | |
| 3562 xyt | |
| 3563 }def | |
| 3564 | |
| 3565 % string end-repeat |- x y | |
| 3566 /end-repeat | |
| 3567 {gsave | |
| 3568 space Descent rmoveto | |
| 3569 foreground SetRGB S | |
| 3570 c Descent sub | |
| 3571 grestore | |
| 3572 exch space add exch moveto | |
| 3573 xt yt | |
| 3574 }def | |
| 3575 | |
| 3576 %>Right RePeat: string entry height width rwidth RRP |- x y | |
| 3577 /RRP{begin-repeat right-direction end-repeat}def | |
| 3578 | |
| 3579 %>Left RePeat: string entry height width rwidth LRP |- x y | |
| 3580 /LRP{begin-repeat left-direction end-repeat}def | |
| 3581 | |
| 3582 % --- Except | |
| 3583 | |
| 3584 % entry height width rwidth begin-except | |
| 3585 /begin-except | |
| 3586 {/rwidth exch def | |
| 3587 /width exch def | |
| 3588 /height exch def | |
| 3589 /entry exch def | |
| 3590 /fE F | |
| 3591 /space SpaceE def | |
| 3592 /Effect EffectE def | |
| 3593 /shape ShapeE def | |
| 3594 /shapecolor BackgroundE def | |
| 3595 /borderwidth BorderWidthE def | |
| 3596 /bordercolor BorderColorE def | |
| 3597 /foreground ForegroundE def | |
| 3598 /shadow ShadowE def | |
| 3599 xyt | |
| 3600 }def | |
| 3601 | |
| 3602 % x-width end-except |- x y | |
| 3603 /end-except | |
| 3604 {gsave | |
| 3605 space space add add Descent rmoveto | |
| 3606 (-) foreground SetRGB S | |
| 3607 grestore | |
| 3608 space 0 rmoveto | |
| 3609 xt yt | |
| 3610 }def | |
| 3611 | |
| 3612 %>Right EXcept: x-width entry height width rwidth REX |- x y | |
| 3613 /REX{begin-except right-direction end-except}def | |
| 3614 | |
| 3615 %>Left EXcept: x-width entry height width rwidth LEX |- x y | |
| 3616 /LEX{begin-except left-direction end-except}def | |
| 3617 | |
| 3618 % --- Sequence | |
| 3619 | |
| 3620 %>Beginning Of Sequence: BOS |- x y | |
| 3621 /BOS{currentpoint}bind def | |
| 3622 | |
| 3623 %>End Of Sequence: x y x1 y1 EOS |- x y | |
| 3624 /EOS{pop pop}bind def | |
| 3625 | |
| 3626 % --- Production | |
| 3627 | |
| 3628 %>Beginning Of Production: string width height BOP |- y x | |
| 3629 /BOP | |
| 3630 {xyp | |
| 3631 neg yp add /yw exch def | |
| 3632 xp add T sub /xw exch def | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3633 dup length 0 gt % empty string ==> no production name |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3634 {/Effect EffectP def |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3635 /fP F ForegroundP SetRGB BackgroundP aload pop true BG S |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3636 /Effect 0 def |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3637 ( :) S false BG}if |
| 27451 | 3638 xw yw moveto |
| 3639 hT EL RA | |
| 3640 xp yw moveto | |
| 3641 T EL | |
| 3642 yp xp | |
| 3643 }def | |
| 3644 | |
| 3645 %>End Of Production: y x delta EOP | |
| 3646 /EOPH{add exch moveto}bind def % horizontal | |
| 3647 /EOPV{exch pop sub 0 exch moveto}bind def % vertical | |
| 3648 | |
| 3649 % --- Empty Alternative | |
| 3650 | |
| 3651 %>Empty Alternative: width EA |- x y | |
| 3652 /EA | |
| 3653 {gsave | |
| 3654 Er add 0 rlineto | |
| 3655 Stroke | |
| 3656 grestore | |
| 3657 c | |
| 3658 }def | |
| 3659 | |
| 3660 % --- Alternative | |
| 3661 | |
| 3662 %>AlTernative: h1 h2 ... hn n width AT |- x y | |
| 3663 /AT | |
| 3664 {xyo xo add /xw exch def | |
| 3665 xw yo moveto | |
| 3666 Er EL | |
| 3667 {xw yo moveto | |
| 3668 dup RAlt | |
| 3669 xo yo moveto | |
| 3670 LAlt}repeat | |
| 3671 xo yo | |
| 3672 }def | |
| 3673 | |
| 3674 % --- Optional | |
| 3675 | |
| 3676 %>OPtional: height width OP |- x y | |
| 3677 /OP | |
| 3678 {xyo | |
| 3679 T sub /ow exch def | |
| 3680 ow Er sub 0 rmoveto | |
| 3681 T Er add EL | |
| 3682 neg dup RAlt | |
| 3683 ow T sub neg EL | |
| 3684 xo yo moveto | |
| 3685 LAlt | |
| 3686 xo yo moveto | |
| 3687 T EL | |
| 3688 xo yo | |
| 3689 }def | |
| 3690 | |
| 3691 % --- List Flow | |
| 3692 | |
| 3693 %>One or More: height width OM |- x y | |
| 3694 /OM | |
| 3695 {xyo | |
| 3696 /ow exch def | |
| 3697 ow Er add 0 rmoveto | |
| 3698 T Er add neg EL | |
| 3699 dup RLoop | |
| 3700 xo T add yo moveto | |
| 3701 LLoop | |
| 3702 xo yo moveto | |
| 3703 T EL | |
| 3704 xo yo | |
| 3705 }def | |
| 3706 | |
| 3707 %>Zero or More: h2 h1 width ZM |- x y | |
| 3708 /ZM | |
| 3709 {xyo | |
| 3710 Er add EL | |
| 3711 Er neg 0 rmoveto | |
| 3712 dup RAlt | |
| 3713 exch dup RLoop | |
| 3714 xo yo moveto | |
| 3715 exch dup LAlt | |
| 3716 exch LLoop | |
| 3717 yo add xo T add exch moveto | |
| 3718 xo yo | |
| 3719 }def | |
| 3720 | |
| 3721 % === end EBNF engine | |
| 3722 | |
| 3723 " | |
| 3724 "EBNF PostScript prologue") | |
| 3725 | |
| 3726 | |
| 3727 (defconst ebnf-eps-prologue | |
| 3728 " | |
| 3729 /#ebnf2ps#dict 230 dict def | |
| 3730 #ebnf2ps#dict begin | |
| 3731 | |
| 3732 % Initiliaze variables to avoid name-conflicting with document variables. | |
| 3733 % This is the case when using `bind' operator. | |
| 3734 /-fillp- 0 def /h 0 def | |
| 3735 /-ox- 0 def /half 0 def | |
| 3736 /-oy- 0 def /height 0 def | |
| 3737 /-save- 0 def /ow 0 def | |
| 3738 /Ascent 0 def /quarter 0 def | |
| 3739 /Descent 0 def /rXX 0 def | |
| 3740 /Effect 0 def /rYY 0 def | |
| 3741 /FontHeight 0 def /rwidth 0 def | |
| 3742 /LineThickness 0 def /rxx 0 def | |
| 3743 /OverlinePosition 0 def /ryy 0 def | |
| 3744 /SpaceBackground 0 def /shadow 0 def | |
| 3745 /StrikeoutPosition 0 def /shape 0 def | |
| 3746 /UnderlinePosition 0 def /shapecolor 0 def | |
| 3747 /XBox 0 def /space 0 def | |
| 3748 /XX 0 def /st 1 string def | |
| 3749 /Xshadow 0 def /w 0 def | |
| 3750 /YBox 0 def /width 0 def | |
| 3751 /YY 0 def /xi 0 def | |
| 3752 /Yshadow 0 def /xo 0 def | |
| 3753 /arrow 0 def /xp 0 def | |
| 3754 /bg false def /xt 0 def | |
| 3755 /bgcolor 0 def /xw 0 def | |
| 3756 /bordercolor 0 def /xx 0 def | |
| 3757 /borderwidth 0 def /yi 0 def | |
| 3758 /dd 0 def /yo 0 def | |
| 3759 /entry 0 def /yp 0 def | |
| 3760 /foreground 0 def /yt 0 def | |
| 3761 /yy 0 def | |
| 3762 | |
| 3763 | |
| 3764 % ISOLatin1Encoding stolen from ps_init.ps in GhostScript 2.6.1.4: | |
| 3765 /ISOLatin1Encoding where | |
| 3766 {pop} | |
| 3767 {% -- The ISO Latin-1 encoding vector isn't known, so define it. | |
| 3768 % -- The first half is the same as the standard encoding, | |
| 3769 % -- except for minus instead of hyphen at code 055. | |
| 3770 /ISOLatin1Encoding | |
| 3771 StandardEncoding 0 45 getinterval aload pop | |
| 3772 /minus | |
| 3773 StandardEncoding 46 82 getinterval aload pop | |
| 3774 %*** NOTE: the following are missing in the Adobe documentation, | |
| 3775 %*** but appear in the displayed table: | |
| 3776 %*** macron at 0225, dieresis at 0230, cedilla at 0233, space at 0240. | |
| 3777 % 0200 (128) | |
| 3778 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef | |
| 3779 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef | |
| 3780 /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent | |
| 3781 /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron | |
| 3782 % 0240 (160) | |
| 3783 /space /exclamdown /cent /sterling | |
| 3784 /currency /yen /brokenbar /section | |
| 3785 /dieresis /copyright /ordfeminine /guillemotleft | |
| 3786 /logicalnot /hyphen /registered /macron | |
| 3787 /degree /plusminus /twosuperior /threesuperior | |
| 3788 /acute /mu /paragraph /periodcentered | |
| 3789 /cedilla /onesuperior /ordmasculine /guillemotright | |
| 3790 /onequarter /onehalf /threequarters /questiondown | |
| 3791 % 0300 (192) | |
| 3792 /Agrave /Aacute /Acircumflex /Atilde | |
| 3793 /Adieresis /Aring /AE /Ccedilla | |
| 3794 /Egrave /Eacute /Ecircumflex /Edieresis | |
| 3795 /Igrave /Iacute /Icircumflex /Idieresis | |
| 3796 /Eth /Ntilde /Ograve /Oacute | |
| 3797 /Ocircumflex /Otilde /Odieresis /multiply | |
| 3798 /Oslash /Ugrave /Uacute /Ucircumflex | |
| 3799 /Udieresis /Yacute /Thorn /germandbls | |
| 3800 % 0340 (224) | |
| 3801 /agrave /aacute /acircumflex /atilde | |
| 3802 /adieresis /aring /ae /ccedilla | |
| 3803 /egrave /eacute /ecircumflex /edieresis | |
| 3804 /igrave /iacute /icircumflex /idieresis | |
| 3805 /eth /ntilde /ograve /oacute | |
| 3806 /ocircumflex /otilde /odieresis /divide | |
| 3807 /oslash /ugrave /uacute /ucircumflex | |
| 3808 /udieresis /yacute /thorn /ydieresis | |
| 3809 256 packedarray def | |
| 3810 }ifelse | |
| 3811 | |
| 3812 /reencodeFontISO %def | |
| 3813 {dup | |
| 3814 length 12 add dict % Make a new font (a new dict the same size | |
| 3815 % as the old one) with room for our new symbols. | |
| 3816 | |
| 3817 begin % Make the new font the current dictionary. | |
| 3818 {1 index /FID ne | |
| 3819 {def}{pop pop}ifelse | |
| 3820 }forall % Copy each of the symbols from the old dictionary | |
| 3821 % to the new one except for the font ID. | |
| 3822 | |
| 3823 currentdict /FontType get 0 ne | |
| 3824 {/Encoding ISOLatin1Encoding def}if % Override the encoding with | |
| 3825 % the ISOLatin1 encoding. | |
| 3826 | |
| 3827 % Use the font's bounding box to determine the ascent, descent, | |
| 3828 % and overall height; don't forget that these values have to be | |
| 3829 % transformed using the font's matrix. | |
| 3830 | |
| 3831 % ^ (x2 y2) | |
| 3832 % | | | |
| 3833 % | v | |
| 3834 % | +----+ - - | |
| 3835 % | | | ^ | |
| 3836 % | | | | Ascent (usually > 0) | |
| 3837 % | | | | | |
| 3838 % (0 0) -> +--+----+--------> | |
| 3839 % | | | | |
| 3840 % | | v Descent (usually < 0) | |
| 3841 % (x1 y1) --> +----+ - - | |
| 3842 | |
| 3843 currentdict /FontType get 0 ne | |
| 3844 {/FontBBox load aload pop % -- x1 y1 x2 y2 | |
| 3845 FontMatrix transform /Ascent exch def pop | |
| 3846 FontMatrix transform /Descent exch def pop} | |
| 3847 {/PrimaryFont FDepVector 0 get def | |
| 3848 PrimaryFont /FontBBox get aload pop | |
| 3849 PrimaryFont /FontMatrix get transform /Ascent exch def pop | |
| 3850 PrimaryFont /FontMatrix get transform /Descent exch def pop | |
| 3851 }ifelse | |
| 3852 | |
| 3853 /FontHeight Ascent Descent sub def % use `sub' because descent < 0 | |
| 3854 | |
| 3855 % Define these in case they're not in the FontInfo | |
| 3856 % (also, here they're easier to get to). | |
| 3857 /UnderlinePosition Descent 0.70 mul def | |
| 3858 /OverlinePosition Descent UnderlinePosition sub Ascent add def | |
| 3859 /StrikeoutPosition Ascent 0.30 mul def | |
| 3860 /LineThickness FontHeight 0.05 mul def | |
| 3861 /Xshadow FontHeight 0.08 mul def | |
| 3862 /Yshadow FontHeight -0.09 mul def | |
| 3863 /SpaceBackground Descent neg UnderlinePosition add def | |
| 3864 /XBox Descent neg def | |
| 3865 /YBox LineThickness 0.7 mul def | |
| 3866 | |
| 3867 currentdict % Leave the new font on the stack | |
| 3868 end % Stop using the font as the current dictionary | |
| 3869 definefont % Put the font into the font dictionary | |
| 3870 pop % Discard the returned font | |
| 3871 }bind def | |
| 3872 | |
| 3873 % Font definition | |
| 3874 /DefFont{findfont exch scalefont reencodeFontISO}def | |
| 3875 | |
| 3876 % Font selection | |
| 3877 /F | |
| 3878 {findfont | |
| 3879 dup /Ascent get /Ascent exch def | |
| 3880 dup /Descent get /Descent exch def | |
| 3881 dup /FontHeight get /FontHeight exch def | |
| 3882 dup /UnderlinePosition get /UnderlinePosition exch def | |
| 3883 dup /OverlinePosition get /OverlinePosition exch def | |
| 3884 dup /StrikeoutPosition get /StrikeoutPosition exch def | |
| 3885 dup /LineThickness get /LineThickness exch def | |
| 3886 dup /Xshadow get /Xshadow exch def | |
| 3887 dup /Yshadow get /Yshadow exch def | |
| 3888 dup /SpaceBackground get /SpaceBackground exch def | |
| 3889 dup /XBox get /XBox exch def | |
| 3890 dup /YBox get /YBox exch def | |
| 3891 setfont | |
| 3892 }def | |
| 3893 | |
| 3894 /BG | |
| 3895 {dup /bg exch def | |
| 3896 {mark 4 1 roll ]} | |
| 3897 {[ 1.0 1.0 1.0 ]} | |
| 3898 ifelse | |
| 3899 /bgcolor exch def | |
| 3900 }def | |
| 3901 | |
| 3902 % stack: -- | |
| 3903 /FillBgColor{bgcolor aload pop setrgbcolor fill}bind def | |
| 3904 | |
| 3905 % stack: fill-or-not lower-x lower-y upper-x upper-y |- -- | |
| 3906 /doRect | |
| 3907 {/rYY exch def | |
| 3908 /rXX exch def | |
| 3909 /ryy exch def | |
| 3910 /rxx exch def | |
| 3911 gsave | |
| 3912 newpath | |
| 3913 rXX rYY moveto | |
| 3914 rxx rYY lineto | |
| 3915 rxx ryy lineto | |
| 3916 rXX ryy lineto | |
| 3917 closepath | |
| 3918 % top of stack: fill-or-not | |
| 3919 {FillBgColor} | |
| 3920 {LineThickness setlinewidth stroke} | |
| 3921 ifelse | |
| 3922 grestore | |
| 3923 }bind def | |
| 3924 | |
| 3925 % stack: string fill-or-not |- -- | |
| 3926 /doOutline | |
| 3927 {/-fillp- exch def | |
| 3928 /-ox- currentpoint /-oy- exch def def | |
| 3929 gsave | |
| 3930 LineThickness setlinewidth | |
| 3931 {st 0 3 -1 roll put | |
| 3932 st dup true charpath | |
| 3933 -fillp- {gsave FillBgColor grestore}if | |
| 3934 stroke stringwidth | |
| 3935 -oy- add /-oy- exch def | |
| 3936 -ox- add /-ox- exch def | |
| 3937 -ox- -oy- moveto | |
| 3938 }forall | |
| 3939 grestore | |
| 3940 -ox- -oy- moveto | |
| 3941 }bind def | |
| 3942 | |
| 3943 % stack: fill-or-not delta |- -- | |
| 3944 /doBox | |
| 3945 {/dd exch def | |
| 3946 xx XBox sub dd sub yy YBox sub dd sub | |
| 3947 XX XBox add dd add YY YBox add dd add | |
| 3948 doRect | |
| 3949 }bind def | |
| 3950 | |
| 3951 % stack: string |- -- | |
| 3952 /doShadow | |
| 3953 {gsave | |
| 3954 Xshadow Yshadow rmoveto | |
| 3955 false doOutline | |
| 3956 grestore | |
| 3957 }bind def | |
| 3958 | |
| 3959 % stack: position |- -- | |
| 3960 /Hline | |
| 3961 {currentpoint exch pop add dup | |
| 3962 gsave | |
| 3963 newpath | |
| 3964 xx exch moveto | |
| 3965 XX exch lineto | |
| 3966 closepath | |
| 3967 LineThickness setlinewidth stroke | |
| 3968 grestore | |
| 3969 }bind def | |
| 3970 | |
| 3971 % stack: string |- -- | |
| 3972 % effect: 1 - underline 2 - strikeout 4 - overline | |
| 3973 % 8 - shadow 16 - box 32 - outline | |
| 3974 /S | |
| 3975 {/xx currentpoint dup Descent add /yy exch def | |
| 3976 Ascent add /YY exch def def | |
| 3977 dup stringwidth pop xx add /XX exch def | |
| 3978 Effect 8 and 0 ne | |
| 3979 {/yy yy Yshadow add def | |
| 3980 /XX XX Xshadow add def | |
| 3981 }if | |
| 3982 bg | |
| 3983 {true | |
| 3984 Effect 16 and 0 ne | |
| 3985 {SpaceBackground doBox} | |
| 3986 {xx yy XX YY doRect} | |
| 3987 ifelse | |
| 3988 }if % background | |
| 3989 Effect 16 and 0 ne{false 0 doBox}if % box | |
| 3990 Effect 8 and 0 ne{dup doShadow}if % shadow | |
| 3991 Effect 32 and 0 ne | |
| 3992 {true doOutline} % outline | |
| 3993 {show} % normal text | |
| 3994 ifelse | |
| 3995 Effect 1 and 0 ne{UnderlinePosition Hline}if % underline | |
| 3996 Effect 2 and 0 ne{StrikeoutPosition Hline}if % strikeout | |
| 3997 Effect 4 and 0 ne{OverlinePosition Hline}if % overline | |
| 3998 }bind def | |
| 3999 | |
| 4000 " | |
| 4001 "EBNF EPS prologue") | |
| 4002 | |
| 4003 | |
| 4004 (defconst ebnf-eps-begin | |
| 4005 " | |
| 4006 end | |
| 4007 | |
| 4008 % x y #ebnf2ps#begin | |
| 4009 /#ebnf2ps#begin | |
| 4010 {#ebnf2ps#dict begin /#ebnf2ps#save save def | |
| 4011 moveto false BG 0.0 0.0 0.0 setrgbcolor}def | |
| 4012 | |
| 4013 /#ebnf2ps#end{showpage #ebnf2ps#save restore end}def | |
| 4014 | |
|
39342
73061d0eb82e
Replace "Prologue" by "Prolog" in PostScript
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
4015 %%EndProlog |
| 27451 | 4016 " |
| 4017 "EBNF EPS begin") | |
| 4018 | |
| 4019 | |
| 4020 (defconst ebnf-eps-end | |
| 4021 "#ebnf2ps#end | |
| 4022 %%EOF | |
| 4023 " | |
| 4024 "EBNF EPS end") | |
| 4025 | |
| 4026 | |
| 4027 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 4028 ;; Formatting | |
| 4029 | |
| 4030 | |
| 4031 (defvar ebnf-format-float "%1.3f") | |
| 4032 | |
| 4033 | |
| 4034 (defun ebnf-format-float (&rest floats) | |
| 4035 (mapconcat | |
| 4036 #'(lambda (float) | |
| 4037 (format ebnf-format-float float)) | |
| 4038 floats | |
| 4039 " ")) | |
| 4040 | |
| 4041 | |
| 4042 (defun ebnf-format-color (format-str color default) | |
| 4043 (let* ((the-color (or color default)) | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
4044 (rgb (ps-color-scale the-color))) |
| 27451 | 4045 (format format-str |
| 4046 (concat "[" | |
| 4047 (ebnf-format-float (nth 0 rgb) (nth 1 rgb) (nth 2 rgb)) | |
| 4048 "]") | |
| 4049 the-color))) | |
| 4050 | |
| 4051 | |
| 4052 (defvar ebnf-message-float "%3.2f") | |
| 4053 | |
| 4054 | |
| 4055 (defsubst ebnf-message-float (format-str value) | |
| 4056 (message format-str | |
| 4057 (format ebnf-message-float value))) | |
| 4058 | |
| 4059 | |
|
52168
282da92e75ee
Move defvar before first use.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52163
diff
changeset
|
4060 (defvar ebnf-total 0) |
|
282da92e75ee
Move defvar before first use.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52163
diff
changeset
|
4061 (defvar ebnf-nprod 0) |
|
282da92e75ee
Move defvar before first use.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52163
diff
changeset
|
4062 |
|
282da92e75ee
Move defvar before first use.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52163
diff
changeset
|
4063 |
| 27451 | 4064 (defsubst ebnf-message-info (messag) |
| 4065 (message "%s...%3d%%" | |
| 4066 messag | |
| 4067 (round (/ (* (setq ebnf-nprod (1+ ebnf-nprod)) 100.0) ebnf-total)))) | |
| 4068 | |
| 4069 | |
| 4070 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 4071 ;; Macros | |
| 4072 | |
| 4073 | |
| 4074 (defmacro ebnf-node-kind (vec &optional value) | |
| 4075 (if value | |
| 4076 `(aset ,vec 0 ,value) | |
| 4077 `(aref ,vec 0))) | |
| 4078 | |
| 4079 | |
| 4080 (defmacro ebnf-node-width-func (node width) | |
| 4081 `(funcall (aref ,node 1) ,node ,width)) | |
| 4082 | |
| 4083 | |
| 4084 (defmacro ebnf-node-dimension-func (node &optional value) | |
| 4085 (if value | |
| 4086 `(aset ,node 2 ,value) | |
| 4087 `(funcall (aref ,node 2) ,node))) | |
| 4088 | |
| 4089 | |
| 4090 (defmacro ebnf-node-entry (vec &optional value) | |
| 4091 (if value | |
| 4092 `(aset ,vec 3 ,value) | |
| 4093 `(aref ,vec 3))) | |
| 4094 | |
| 4095 | |
| 4096 (defmacro ebnf-node-height (vec &optional value) | |
| 4097 (if value | |
| 4098 `(aset ,vec 4 ,value) | |
| 4099 `(aref ,vec 4))) | |
| 4100 | |
| 4101 | |
| 4102 (defmacro ebnf-node-width (vec &optional value) | |
| 4103 (if value | |
| 4104 `(aset ,vec 5 ,value) | |
| 4105 `(aref ,vec 5))) | |
| 4106 | |
| 4107 | |
| 4108 (defmacro ebnf-node-name (vec) | |
| 4109 `(aref ,vec 6)) | |
| 4110 | |
| 4111 | |
| 4112 (defmacro ebnf-node-list (vec &optional value) | |
| 4113 (if value | |
| 4114 `(aset ,vec 6 ,value) | |
| 4115 `(aref ,vec 6))) | |
| 4116 | |
| 4117 | |
| 4118 (defmacro ebnf-node-default (vec) | |
| 4119 `(aref ,vec 7)) | |
| 4120 | |
| 4121 | |
| 4122 (defmacro ebnf-node-production (vec &optional value) | |
| 4123 (if value | |
| 4124 `(aset ,vec 7 ,value) | |
| 4125 `(aref ,vec 7))) | |
| 4126 | |
| 4127 | |
| 4128 (defmacro ebnf-node-separator (vec &optional value) | |
| 4129 (if value | |
| 4130 `(aset ,vec 7 ,value) | |
| 4131 `(aref ,vec 7))) | |
| 4132 | |
| 4133 | |
| 4134 (defmacro ebnf-node-action (vec &optional value) | |
| 4135 (if value | |
| 4136 `(aset ,vec 8 ,value) | |
| 4137 `(aref ,vec 8))) | |
| 4138 | |
| 4139 | |
| 4140 (defmacro ebnf-node-generation (node) | |
| 4141 `(funcall (ebnf-node-kind ,node) ,node)) | |
| 4142 | |
| 4143 | |
| 4144 (defmacro ebnf-max-width (prod) | |
| 4145 `(max (ebnf-node-width ,prod) | |
| 4146 (+ (* (length (ebnf-node-name ,prod)) | |
| 4147 ebnf-font-width-P) | |
| 4148 ebnf-production-horizontal-space))) | |
| 4149 | |
| 4150 | |
| 4151 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 4152 ;; PostScript generation | |
| 4153 | |
| 4154 | |
| 4155 (defun ebnf-generate-eps (ebnf-tree) | |
| 4156 (let* ((ps-color-p (and ebnf-color-p (ps-color-device))) | |
| 4157 (ps-print-color-scale (if ps-color-p | |
| 4158 (float (car (ps-color-values "white"))) | |
| 4159 1.0)) | |
| 4160 (ebnf-total (length ebnf-tree)) | |
| 4161 (ebnf-nprod 0) | |
| 4162 (old-ps-output (symbol-function 'ps-output)) | |
| 4163 (old-ps-output-string (symbol-function 'ps-output-string)) | |
| 4164 (eps-buffer (get-buffer-create ebnf-eps-buffer-name)) | |
| 4165 ebnf-debug-ps error-msg horizontal | |
| 4166 prod prod-name prod-width prod-height prod-list file-list) | |
| 4167 ;; redefines `ps-output' and `ps-output-string' | |
| 4168 (defalias 'ps-output 'ebnf-eps-output) | |
| 4169 (defalias 'ps-output-string 'ps-output-string-prim) | |
| 4170 ;; generate EPS file | |
| 4171 (save-excursion | |
| 4172 (condition-case data | |
| 4173 (progn | |
| 4174 (while ebnf-tree | |
| 4175 (setq prod (car ebnf-tree) | |
| 4176 prod-name (ebnf-node-name prod) | |
| 4177 prod-width (ebnf-max-width prod) | |
| 4178 prod-height (ebnf-node-height prod) | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
4179 horizontal (memq (ebnf-node-action prod) |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
4180 ebnf-action-list)) |
| 27451 | 4181 ;; generate production in EPS buffer |
| 4182 (save-excursion | |
| 4183 (set-buffer eps-buffer) | |
| 4184 (setq ebnf-eps-upper-x 0.0 | |
| 4185 ebnf-eps-upper-y 0.0 | |
| 4186 ebnf-eps-max-width prod-width | |
| 4187 ebnf-eps-max-height prod-height) | |
| 4188 (ebnf-generate-production prod)) | |
| 4189 (if (setq prod-list (cdr (assoc prod-name | |
| 4190 ebnf-eps-production-list))) | |
| 4191 ;; insert EPS buffer in all buffer associated with production | |
| 4192 (ebnf-eps-production-list prod-list 'file-list horizontal | |
| 4193 prod-width prod-height eps-buffer) | |
| 4194 ;; write EPS file for production | |
| 4195 (ebnf-eps-finish-and-write eps-buffer | |
| 4196 (ebnf-eps-filename prod-name))) | |
| 4197 ;; prepare for next loop | |
| 4198 (save-excursion | |
| 4199 (set-buffer eps-buffer) | |
| 4200 (erase-buffer)) | |
| 4201 (setq ebnf-tree (cdr ebnf-tree))) | |
| 4202 ;; write and kill temporary buffers | |
| 4203 (ebnf-eps-write-kill-temp file-list t) | |
| 4204 (setq file-list nil)) | |
| 4205 ;; handler | |
| 4206 ((quit error) | |
| 4207 (setq error-msg (error-message-string data))))) | |
| 4208 ;; restore `ps-output' and `ps-output-string' | |
| 4209 (defalias 'ps-output old-ps-output) | |
| 4210 (defalias 'ps-output-string old-ps-output-string) | |
| 4211 ;; kill temporary buffers | |
| 4212 (kill-buffer eps-buffer) | |
| 4213 (ebnf-eps-write-kill-temp file-list nil) | |
| 4214 (and error-msg (error error-msg)) | |
| 4215 (message " "))) | |
| 4216 | |
| 4217 | |
| 4218 ;; write and kill temporary buffers | |
| 4219 (defun ebnf-eps-write-kill-temp (file-list write-p) | |
| 4220 (while file-list | |
| 4221 (let ((buffer (get-buffer (concat " *" (car file-list) "*")))) | |
| 4222 (when buffer | |
| 4223 (and write-p | |
| 4224 (ebnf-eps-finish-and-write buffer (car file-list))) | |
| 4225 (kill-buffer buffer))) | |
| 4226 (setq file-list (cdr file-list)))) | |
| 4227 | |
| 4228 | |
| 4229 ;; insert EPS buffer in all buffer associated with production | |
| 4230 (defun ebnf-eps-production-list (prod-list file-list-sym horizontal | |
| 4231 prod-width prod-height eps-buffer) | |
| 4232 (while prod-list | |
| 4233 (add-to-list file-list-sym (car prod-list)) | |
| 4234 (save-excursion | |
| 4235 (set-buffer (get-buffer-create (concat " *" (car prod-list) "*"))) | |
| 4236 (goto-char (point-max)) | |
| 4237 (cond | |
| 4238 ;; first production | |
| 4239 ((zerop (buffer-size)) | |
| 4240 (setq ebnf-eps-upper-x 0.0 | |
| 4241 ebnf-eps-upper-y 0.0 | |
| 4242 ebnf-eps-max-width prod-width | |
| 4243 ebnf-eps-max-height prod-height)) | |
| 4244 ;; horizontal | |
| 4245 (horizontal | |
| 4246 (ebnf-eop-horizontal ebnf-eps-prod-width) | |
| 4247 (setq ebnf-eps-max-width (+ ebnf-eps-max-width | |
| 4248 ebnf-production-horizontal-space | |
| 4249 prod-width) | |
| 4250 ebnf-eps-max-height (max ebnf-eps-max-height prod-height))) | |
| 4251 ;; vertical | |
| 4252 (t | |
| 4253 (ebnf-eop-vertical ebnf-eps-max-height) | |
| 4254 (setq ebnf-eps-upper-x (max ebnf-eps-upper-x ebnf-eps-max-width) | |
| 4255 ebnf-eps-upper-y (if (zerop ebnf-eps-upper-y) | |
| 4256 ebnf-eps-max-height | |
| 4257 (+ ebnf-eps-upper-y | |
| 4258 ebnf-production-vertical-space | |
| 4259 ebnf-eps-max-height)) | |
| 4260 ebnf-eps-max-width prod-width | |
| 4261 ebnf-eps-max-height prod-height)) | |
| 4262 ) | |
| 4263 (setq ebnf-eps-prod-width prod-width) | |
| 4264 (insert-buffer eps-buffer)) | |
| 4265 (setq prod-list (cdr prod-list)))) | |
| 4266 | |
| 4267 | |
| 4268 (defun ebnf-generate (ebnf-tree) | |
| 4269 (let* ((ps-color-p (and ebnf-color-p (ps-color-device))) | |
| 4270 (ps-print-color-scale (if ps-color-p | |
| 4271 (float (car (ps-color-values "white"))) | |
| 4272 1.0)) | |
| 4273 ps-zebra-stripes ps-line-number ps-razzle-dazzle | |
| 4274 ps-print-hook | |
| 4275 ps-print-begin-sheet-hook | |
| 4276 ps-print-begin-page-hook | |
| 4277 ps-print-begin-column-hook) | |
| 4278 (ps-generate (current-buffer) (point-min) (point-max) | |
| 4279 'ebnf-generate-postscript))) | |
| 4280 | |
| 4281 | |
| 4282 (defvar ebnf-tree nil) | |
| 4283 (defvar ebnf-direction "R") | |
| 4284 | |
| 4285 | |
| 4286 (defun ebnf-generate-postscript (from to) | |
| 4287 (ebnf-begin-file) | |
| 4288 (if ebnf-horizontal-max-height | |
| 4289 (ebnf-generate-with-max-height) | |
| 4290 (ebnf-generate-without-max-height)) | |
| 4291 (message " ")) | |
| 4292 | |
| 4293 | |
| 4294 (defun ebnf-generate-with-max-height () | |
| 4295 (let ((ebnf-total (length ebnf-tree)) | |
| 4296 (ebnf-nprod 0) | |
| 4297 next-line max-height prod the-width) | |
| 4298 (while ebnf-tree | |
| 4299 ;; find next line point | |
| 4300 (setq next-line ebnf-tree | |
| 4301 prod (car ebnf-tree) | |
| 4302 max-height (ebnf-node-height prod)) | |
| 4303 (ebnf-begin-line prod (ebnf-max-width prod)) | |
| 4304 (while (and (setq next-line (cdr next-line)) | |
| 4305 (setq prod (car next-line)) | |
| 4306 (memq (ebnf-node-action prod) ebnf-action-list) | |
| 4307 (setq the-width (ebnf-max-width prod)) | |
| 4308 (<= the-width ps-width-remaining)) | |
| 4309 (setq max-height (max max-height (ebnf-node-height prod)) | |
| 4310 ps-width-remaining (- ps-width-remaining | |
| 4311 (+ the-width | |
| 4312 ebnf-production-horizontal-space)))) | |
| 4313 ;; generate current line | |
| 4314 (ebnf-newline max-height) | |
| 4315 (setq prod (car ebnf-tree)) | |
| 4316 (ebnf-generate-production prod) | |
| 4317 (while (not (eq (setq ebnf-tree (cdr ebnf-tree)) next-line)) | |
| 4318 (ebnf-eop-horizontal (ebnf-max-width prod)) | |
| 4319 (setq prod (car ebnf-tree)) | |
| 4320 (ebnf-generate-production prod)) | |
| 4321 (ebnf-eop-vertical max-height)))) | |
| 4322 | |
| 4323 | |
| 4324 (defun ebnf-generate-without-max-height () | |
| 4325 (let ((ebnf-total (length ebnf-tree)) | |
| 4326 (ebnf-nprod 0) | |
| 4327 max-height prod bef-width cur-width) | |
| 4328 (while ebnf-tree | |
| 4329 ;; generate current line | |
| 4330 (setq prod (car ebnf-tree) | |
| 4331 max-height (ebnf-node-height prod) | |
| 4332 bef-width (ebnf-max-width prod)) | |
| 4333 (ebnf-begin-line prod bef-width) | |
| 4334 (ebnf-generate-production prod) | |
| 4335 (while (and (setq ebnf-tree (cdr ebnf-tree)) | |
| 4336 (setq prod (car ebnf-tree)) | |
| 4337 (memq (ebnf-node-action prod) ebnf-action-list) | |
| 4338 (setq cur-width (ebnf-max-width prod)) | |
| 4339 (<= cur-width ps-width-remaining) | |
| 4340 (<= (ebnf-node-height prod) ps-height-remaining)) | |
| 4341 (ebnf-eop-horizontal bef-width) | |
| 4342 (ebnf-generate-production prod) | |
| 4343 (setq bef-width cur-width | |
| 4344 max-height (max max-height (ebnf-node-height prod)) | |
| 4345 ps-width-remaining (- ps-width-remaining | |
| 4346 (+ cur-width | |
| 4347 ebnf-production-horizontal-space)))) | |
| 4348 (ebnf-eop-vertical max-height) | |
| 4349 ;; prepare next line | |
| 4350 (ebnf-newline max-height)))) | |
| 4351 | |
| 4352 | |
| 4353 (defun ebnf-begin-line (prod width) | |
| 4354 (and (or (eq (ebnf-node-action prod) 'form-feed) | |
| 4355 (> (ebnf-node-height prod) ps-height-remaining)) | |
| 4356 (ebnf-new-page)) | |
| 4357 (setq ps-width-remaining (- ps-width-remaining | |
| 4358 (+ width | |
| 4359 ebnf-production-horizontal-space)))) | |
| 4360 | |
| 4361 | |
| 4362 (defun ebnf-newline (height) | |
| 4363 (and (> height ps-height-remaining) | |
| 4364 (ebnf-new-page)) | |
| 4365 (setq ps-width-remaining ps-print-width | |
| 4366 ps-height-remaining (- ps-height-remaining | |
| 4367 (+ height | |
| 4368 ebnf-production-vertical-space)))) | |
| 4369 | |
| 4370 | |
| 4371 ;; [production width-fun dim-fun entry height width name production action] | |
| 4372 (defun ebnf-generate-production (production) | |
| 4373 (ebnf-message-info "Generating") | |
| 4374 (run-hooks 'ebnf-production-hook) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4375 (ps-output-string (if ebnf-production-name-p |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4376 (ebnf-node-name production) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4377 "")) |
| 27451 | 4378 (ps-output " " |
| 4379 (ebnf-format-float | |
| 4380 (ebnf-node-width production) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4381 (+ (if ebnf-production-name-p |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4382 ebnf-basic-height |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4383 0.0) |
| 27451 | 4384 (ebnf-node-entry (ebnf-node-production production)))) |
| 4385 " BOP\n") | |
| 4386 (ebnf-node-generation (ebnf-node-production production)) | |
| 4387 (ps-output "EOS\n")) | |
| 4388 | |
| 4389 | |
| 4390 ;; [alternative width-fun dim-fun entry height width list] | |
| 4391 (defun ebnf-generate-alternative (alternative) | |
| 4392 (let ((alt (ebnf-node-list alternative)) | |
| 4393 (entry (ebnf-node-entry alternative)) | |
| 4394 (nlist 0) | |
| 4395 alt-height alt-entry) | |
| 4396 (while alt | |
| 4397 (ps-output (ebnf-format-float (- entry (ebnf-node-entry (car alt)))) | |
| 4398 " ") | |
| 4399 (setq entry (- entry (ebnf-node-height (car alt)) ebnf-vertical-space) | |
| 4400 nlist (1+ nlist) | |
| 4401 alt (cdr alt))) | |
| 4402 (ps-output (format "%d " nlist) | |
| 4403 (ebnf-format-float (ebnf-node-width alternative)) | |
| 4404 " AT\n") | |
| 4405 (setq alt (ebnf-node-list alternative)) | |
| 4406 (when alt | |
| 4407 (ebnf-node-generation (car alt)) | |
| 4408 (setq alt-height (- (ebnf-node-height (car alt)) | |
| 4409 (ebnf-node-entry (car alt))))) | |
| 4410 (while (setq alt (cdr alt)) | |
| 4411 (setq alt-entry (ebnf-node-entry (car alt))) | |
| 4412 (ebnf-vertical-movement | |
| 4413 (- (+ alt-height ebnf-vertical-space alt-entry))) | |
| 4414 (ebnf-node-generation (car alt)) | |
| 4415 (setq alt-height (- (ebnf-node-height (car alt)) alt-entry)))) | |
| 4416 (ps-output "EOS\n")) | |
| 4417 | |
| 4418 | |
| 4419 ;; [sequence width-fun dim-fun entry height width list] | |
| 4420 (defun ebnf-generate-sequence (sequence) | |
| 4421 (ps-output "BOS\n") | |
| 4422 (let ((seq (ebnf-node-list sequence)) | |
| 4423 seq-width) | |
| 4424 (when seq | |
| 4425 (ebnf-node-generation (car seq)) | |
| 4426 (setq seq-width (ebnf-node-width (car seq)))) | |
| 4427 (while (setq seq (cdr seq)) | |
| 4428 (ebnf-horizontal-movement seq-width) | |
| 4429 (ebnf-node-generation (car seq)) | |
| 4430 (setq seq-width (ebnf-node-width (car seq))))) | |
| 4431 (ps-output "EOS\n")) | |
| 4432 | |
| 4433 | |
| 4434 ;; [terminal width-fun dim-fun entry height width name] | |
| 4435 (defun ebnf-generate-terminal (terminal) | |
| 4436 (ebnf-gen-terminal terminal "T")) | |
| 4437 | |
| 4438 | |
| 4439 ;; [non-terminal width-fun dim-fun entry height width name] | |
| 4440 (defun ebnf-generate-non-terminal (non-terminal) | |
| 4441 (ebnf-gen-terminal non-terminal "NT")) | |
| 4442 | |
| 4443 | |
| 4444 ;; [empty width-fun dim-fun entry height width] | |
| 4445 (defun ebnf-generate-empty (empty) | |
| 4446 (ebnf-empty-alternative (ebnf-node-width empty))) | |
| 4447 | |
| 4448 | |
| 4449 ;; [optional width-fun dim-fun entry height width element] | |
| 4450 (defun ebnf-generate-optional (optional) | |
| 4451 (let ((the-optional (ebnf-node-list optional))) | |
| 4452 (ps-output (ebnf-format-float | |
| 4453 (+ (- (ebnf-node-height the-optional) | |
| 4454 (ebnf-node-entry optional)) | |
| 4455 ebnf-vertical-space) | |
| 4456 (ebnf-node-width optional)) | |
| 4457 " OP\n") | |
| 4458 (ebnf-node-generation the-optional) | |
| 4459 (ps-output "EOS\n"))) | |
| 4460 | |
| 4461 | |
| 4462 ;; [one-or-more width-fun dim-fun entry height width element separator] | |
| 4463 (defun ebnf-generate-one-or-more (one-or-more) | |
| 4464 (let* ((width (ebnf-node-width one-or-more)) | |
| 4465 (sep (ebnf-node-separator one-or-more)) | |
| 4466 (entry (- (ebnf-node-entry one-or-more) | |
| 4467 (if sep | |
| 4468 (ebnf-node-entry sep) | |
| 4469 0)))) | |
| 4470 (ps-output (ebnf-format-float entry width) | |
| 4471 " OM\n") | |
| 4472 (ebnf-node-generation (ebnf-node-list one-or-more)) | |
| 4473 (ebnf-vertical-movement entry) | |
| 4474 (if sep | |
| 4475 (let ((ebnf-direction "L")) | |
| 4476 (ebnf-node-generation sep)) | |
| 4477 (ebnf-empty-alternative (- width ebnf-horizontal-space)))) | |
| 4478 (ps-output "EOS\n")) | |
| 4479 | |
| 4480 | |
| 4481 ;; [zero-or-more width-fun dim-fun entry height width element separator] | |
| 4482 (defun ebnf-generate-zero-or-more (zero-or-more) | |
| 4483 (let* ((width (ebnf-node-width zero-or-more)) | |
| 4484 (node-list (ebnf-node-list zero-or-more)) | |
| 4485 (list-entry (ebnf-node-entry node-list)) | |
| 4486 (node-sep (ebnf-node-separator zero-or-more)) | |
| 4487 (entry (+ list-entry | |
| 4488 ebnf-vertical-space | |
| 4489 (if node-sep | |
| 4490 (- (ebnf-node-height node-sep) | |
| 4491 (ebnf-node-entry node-sep)) | |
| 4492 0)))) | |
| 4493 (ps-output (ebnf-format-float entry | |
| 4494 (+ (- (ebnf-node-height node-list) | |
| 4495 list-entry) | |
| 4496 ebnf-vertical-space) | |
| 4497 width) | |
| 4498 " ZM\n") | |
| 4499 (ebnf-node-generation (ebnf-node-list zero-or-more)) | |
| 4500 (ebnf-vertical-movement entry) | |
| 4501 (if (ebnf-node-separator zero-or-more) | |
| 4502 (let ((ebnf-direction "L")) | |
| 4503 (ebnf-node-generation (ebnf-node-separator zero-or-more))) | |
| 4504 (ebnf-empty-alternative (- width ebnf-horizontal-space)))) | |
| 4505 (ps-output "EOS\n")) | |
| 4506 | |
| 4507 | |
| 4508 ;; [special width-fun dim-fun entry height width name] | |
| 4509 (defun ebnf-generate-special (special) | |
| 4510 (ebnf-gen-terminal special "SP")) | |
| 4511 | |
| 4512 | |
| 4513 ;; [repeat width-fun dim-fun entry height width times element] | |
| 4514 (defun ebnf-generate-repeat (repeat) | |
| 4515 (let ((times (ebnf-node-name repeat)) | |
| 4516 (element (ebnf-node-separator repeat))) | |
| 4517 (ps-output-string times) | |
| 4518 (ps-output " " | |
| 4519 (ebnf-format-float | |
| 4520 (ebnf-node-entry repeat) | |
| 4521 (ebnf-node-height repeat) | |
| 4522 (ebnf-node-width repeat) | |
| 4523 (if element | |
| 4524 (+ (ebnf-node-width element) | |
| 4525 ebnf-space-R ebnf-space-R ebnf-space-R | |
| 4526 (* (length times) ebnf-font-width-R)) | |
| 4527 0.0)) | |
| 4528 " " ebnf-direction "RP\n") | |
| 4529 (and element | |
| 4530 (ebnf-node-generation element))) | |
| 4531 (ps-output "EOS\n")) | |
| 4532 | |
| 4533 | |
| 4534 ;; [except width-fun dim-fun entry height width element element] | |
| 4535 (defun ebnf-generate-except (except) | |
| 4536 (let* ((element (ebnf-node-list except)) | |
| 4537 (exception (ebnf-node-separator except)) | |
| 4538 (width (ebnf-node-width element))) | |
| 4539 (ps-output (ebnf-format-float | |
| 4540 width | |
| 4541 (ebnf-node-entry except) | |
| 4542 (ebnf-node-height except) | |
| 4543 (ebnf-node-width except) | |
| 4544 (+ width | |
| 4545 ebnf-space-E ebnf-space-E ebnf-space-E | |
| 4546 ebnf-font-width-E | |
| 4547 (if exception | |
| 4548 (+ (ebnf-node-width exception) ebnf-space-E) | |
| 4549 0.0))) | |
| 4550 " " ebnf-direction "EX\n") | |
| 4551 (ebnf-node-generation (ebnf-node-list except)) | |
| 4552 (when exception | |
| 4553 (ebnf-horizontal-movement (+ width ebnf-space-E | |
| 4554 ebnf-font-width-E ebnf-space-E)) | |
| 4555 (ebnf-node-generation exception))) | |
| 4556 (ps-output "EOS\n")) | |
| 4557 | |
| 4558 | |
| 4559 (defun ebnf-gen-terminal (node code) | |
| 4560 (ps-output-string (ebnf-node-name node)) | |
| 4561 (ps-output " " (ebnf-format-float (ebnf-node-width node)) | |
| 4562 " " ebnf-direction code | |
| 4563 (if (ebnf-node-default node) | |
| 4564 "D\n" | |
| 4565 "\n"))) | |
| 4566 | |
| 4567 | |
| 4568 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 4569 ;; Internal functions | |
| 4570 | |
| 4571 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4572 (defun ebnf-directory (fun &optional directory) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4573 "Process files in DIRECTORY applying function FUN on each file. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4574 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4575 If DIRECTORY is nil, it's used `default-directory'. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4576 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4577 The files in DIRECTORY that matches `ebnf-file-suffix-regexp' (which see) are |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4578 processed." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4579 (let ((files (directory-files (or directory default-directory) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4580 t ebnf-file-suffix-regexp))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4581 (while files |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4582 (set-buffer (find-file-noselect (car files))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4583 (funcall fun) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4584 (setq buffer-backed-up t) ; Do not back it up. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4585 (save-buffer) ; Just save new version. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4586 (kill-buffer (current-buffer)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4587 (setq files (cdr files))))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4588 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4589 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4590 (defun ebnf-file (fun file &optional do-not-kill-buffer-when-done) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4591 "Process file FILE applying function FUN. |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4592 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4593 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4594 killed after process termination." |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4595 (set-buffer (find-file-noselect file)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4596 (funcall fun) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4597 (or do-not-kill-buffer-when-done |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4598 (kill-buffer (current-buffer)))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4599 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4600 |
|
34803
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4601 ;; function `ebnf-range-regexp' is used to avoid a bug of `skip-chars-forward' |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4602 ;; on version 20.4.1, that is, it doesn't accept ranges like "\240-\377" (or |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4603 ;; "\177-\237"), but it accepts the character sequence from \240 to \377 (or |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4604 ;; from \177 to \237). It seems that version 20.7 has the same problem. |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4605 (defun ebnf-range-regexp (prefix from to) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4606 (let (str) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4607 (while (<= from to) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4608 (setq str (concat str (char-to-string from)) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4609 from (1+ from))) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4610 (concat prefix str))) |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4611 |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
4612 |
| 27451 | 4613 (defvar ebnf-map-name |
| 4614 (let ((map (make-vector 256 ?\_))) | |
| 4615 (mapcar #'(lambda (char) | |
| 4616 (aset map char char)) | |
| 4617 (concat "#$%&+-.0123456789=?@~" | |
| 4618 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| 4619 "abcdefghijklmnopqrstuvwxyz")) | |
| 4620 map)) | |
| 4621 | |
| 4622 | |
| 4623 (defun ebnf-eps-filename (str) | |
| 4624 (let* ((len (length str)) | |
| 4625 (stri 0) | |
| 4626 (new (make-string len ?\ ))) | |
| 4627 (while (< stri len) | |
| 4628 (aset new stri (aref ebnf-map-name (aref str stri))) | |
| 4629 (setq stri (1+ stri))) | |
| 4630 (concat ebnf-eps-prefix new ".eps"))) | |
| 4631 | |
| 4632 | |
| 4633 (defun ebnf-eps-output (&rest args) | |
| 4634 (while args | |
| 4635 (insert (car args)) | |
| 4636 (setq args (cdr args)))) | |
| 4637 | |
| 4638 | |
| 4639 (defun ebnf-generate-region (from to gen-func) | |
| 4640 (run-hooks 'ebnf-hook) | |
| 4641 (let ((ebnf-limit (max from to)) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4642 (error-msg "SYNTAX") |
| 27451 | 4643 the-point) |
| 4644 (save-excursion | |
| 4645 (save-restriction | |
| 4646 (save-match-data | |
| 4647 (condition-case data | |
| 4648 (let ((tree (ebnf-parse-and-sort (min from to)))) | |
| 4649 (when gen-func | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4650 (setq error-msg "EMPTY RULES" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4651 tree (ebnf-eliminate-empty-rules tree)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4652 (setq error-msg "OPTMIZE" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4653 tree (ebnf-optimize tree)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4654 (setq error-msg "DIMENSIONS" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4655 tree (ebnf-dimensions tree)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4656 (setq error-msg "GENERATION") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4657 (funcall gen-func tree)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4658 (setq error-msg nil)) ; here it's ok |
| 27451 | 4659 ;; handler |
| 4660 ((quit error) | |
| 4661 (ding) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4662 (setq the-point (max (1- (point)) (point-min)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4663 error-msg (concat error-msg ": " |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4664 (error-message-string data) |
|
54145
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4665 ", " |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4666 (and (string= error-msg "SYNTAX") |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4667 (format "at position %d " |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4668 the-point)) |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4669 (format "in buffer \"%s\"." |
|
e3765a3df826
For compatibility with Emacs 20, define assq-delete-all if it's not defined.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54140
diff
changeset
|
4670 (buffer-name))))))))) |
| 27451 | 4671 (cond |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4672 ;; error occurred |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4673 (error-msg |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4674 (goto-char the-point) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4675 (if ebnf-stop-on-error |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4676 (error error-msg) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4677 (message error-msg))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4678 ;; generated output OK |
| 27451 | 4679 (gen-func |
| 4680 nil) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4681 ;; syntax checked OK |
| 27451 | 4682 (t |
|
49671
265858431838
(ebnf2ps): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
39421
diff
changeset
|
4683 (message "EBNF syntactic analysis: NO ERRORS."))))) |
| 27451 | 4684 |
| 4685 | |
| 4686 (defun ebnf-parse-and-sort (start) | |
| 4687 (ebnf-begin-job) | |
| 4688 (let ((tree (funcall ebnf-parser-func start))) | |
| 4689 (if ebnf-sort-production | |
| 4690 (progn | |
| 4691 (message "Sorting...") | |
| 4692 (sort tree | |
| 4693 (if (eq ebnf-sort-production 'ascending) | |
| 4694 'ebnf-sorter-ascending | |
| 4695 'ebnf-sorter-descending))) | |
| 4696 (nreverse tree)))) | |
| 4697 | |
| 4698 | |
| 4699 (defun ebnf-sorter-ascending (first second) | |
| 4700 (string< (ebnf-node-name first) | |
| 4701 (ebnf-node-name second))) | |
| 4702 | |
| 4703 | |
| 4704 (defun ebnf-sorter-descending (first second) | |
| 4705 (string< (ebnf-node-name second) | |
| 4706 (ebnf-node-name first))) | |
| 4707 | |
| 4708 | |
| 4709 (defun ebnf-empty-alternative (width) | |
| 4710 (ps-output (ebnf-format-float width) " EA\n")) | |
| 4711 | |
| 4712 | |
| 4713 (defun ebnf-vertical-movement (height) | |
| 4714 (ps-output (ebnf-format-float height) " vm\n")) | |
| 4715 | |
| 4716 | |
| 4717 (defun ebnf-horizontal-movement (width) | |
| 4718 (ps-output (ebnf-format-float width) " hm\n")) | |
| 4719 | |
| 4720 | |
| 4721 (defun ebnf-entry (height) | |
| 4722 (* height ebnf-entry-percentage)) | |
| 4723 | |
| 4724 | |
| 4725 (defun ebnf-eop-vertical (height) | |
| 4726 (ps-output (ebnf-format-float (+ height ebnf-production-vertical-space)) | |
| 4727 " EOPV\n\n")) | |
| 4728 | |
| 4729 | |
| 4730 (defun ebnf-eop-horizontal (width) | |
| 4731 (ps-output (ebnf-format-float (+ width ebnf-production-horizontal-space)) | |
| 4732 " EOPH\n\n")) | |
| 4733 | |
| 4734 | |
| 4735 (defun ebnf-new-page () | |
| 4736 (when (< ps-height-remaining ps-print-height) | |
| 4737 (run-hooks 'ebnf-page-hook) | |
| 4738 (ps-next-page) | |
| 4739 (ps-output "\n"))) | |
| 4740 | |
| 4741 | |
| 4742 (defsubst ebnf-font-size (font) (nth 0 font)) | |
| 4743 (defsubst ebnf-font-name (font) (nth 1 font)) | |
| 4744 (defsubst ebnf-font-foreground (font) (nth 2 font)) | |
| 4745 (defsubst ebnf-font-background (font) (nth 3 font)) | |
| 4746 (defsubst ebnf-font-list (font) (nthcdr 4 font)) | |
| 4747 (defsubst ebnf-font-attributes (font) | |
| 4748 (lsh (ps-extension-bit (cdr font)) -2)) | |
| 4749 | |
| 4750 | |
| 4751 (defconst ebnf-font-name-select | |
| 4752 (vector 'normal 'bold 'italic 'bold-italic)) | |
| 4753 | |
| 4754 | |
| 4755 (defun ebnf-font-name-select (font) | |
| 4756 (let* ((font-list (ebnf-font-list font)) | |
| 4757 (font-index (+ (if (memq 'bold font-list) 1 0) | |
| 4758 (if (memq 'italic font-list) 2 0))) | |
| 4759 (name (ebnf-font-name font)) | |
| 4760 (database (cdr (assoc name ps-font-info-database))) | |
| 4761 (info-list (or (cdr (assoc 'fonts database)) | |
| 4762 (error "Invalid font: %s" name)))) | |
| 4763 (or (cdr (assoc (aref ebnf-font-name-select font-index) | |
| 4764 info-list)) | |
| 4765 (error "Invalid attributes for font %s" name)))) | |
| 4766 | |
| 4767 | |
| 4768 (defun ebnf-font-select (font select) | |
| 4769 (let* ((name (ebnf-font-name font)) | |
| 4770 (database (cdr (assoc name ps-font-info-database))) | |
| 4771 (size (cdr (assoc 'size database))) | |
| 4772 (base (cdr (assoc select database)))) | |
| 4773 (if (and size base) | |
| 4774 (/ (* (ebnf-font-size font) base) | |
| 4775 size) | |
| 4776 (error "Invalid font: %s" name)))) | |
| 4777 | |
| 4778 | |
| 4779 (defsubst ebnf-font-width (font) | |
| 4780 (ebnf-font-select font 'avg-char-width)) | |
| 4781 (defsubst ebnf-font-height (font) | |
| 4782 (ebnf-font-select font 'line-height)) | |
| 4783 | |
| 4784 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4785 (defconst ebnf-syntax-alist |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4786 ;; 0.syntax 1.parser 2.initializer |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4787 '((iso-ebnf ebnf-iso-parser ebnf-iso-initialize) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4788 (yacc ebnf-yac-parser ebnf-yac-initialize) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4789 (abnf ebnf-abn-parser ebnf-abn-initialize) |
| 54625 | 4790 (ebnf ebnf-bnf-parser ebnf-bnf-initialize) |
| 54714 | 4791 (ebnfx ebnf-ebx-parser ebnf-ebx-initialize) |
| 4792 (dtd ebnf-dtd-parser ebnf-dtd-initialize)) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4793 "Alist associating ebnf syntax with a parser and a initializer.") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4794 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4795 |
| 27451 | 4796 (defun ebnf-begin-job () |
|
52163
0306a6f7d0f4
ebnf-begin-job code fix
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
49671
diff
changeset
|
4797 (ps-printing-region nil nil nil) |
| 27451 | 4798 (if ebnf-use-float-format |
| 4799 (setq ebnf-format-float "%1.3f" | |
| 4800 ebnf-message-float "%3.2f") | |
| 4801 (setq ebnf-format-float "%s" | |
| 4802 ebnf-message-float "%s")) | |
| 4803 (ebnf-otz-initialize) | |
| 4804 ;; to avoid compilation gripes when calling autoloaded functions | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4805 (let ((init (or (assoc ebnf-syntax ebnf-syntax-alist) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4806 (assoc 'ebnf ebnf-syntax-alist)))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4807 (setq ebnf-parser-func (nth 1 init)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4808 (funcall (nth 2 init))) |
| 27451 | 4809 (and ebnf-terminal-regexp ; ensures that it's a string or nil |
| 4810 (not (stringp ebnf-terminal-regexp)) | |
| 4811 (setq ebnf-terminal-regexp nil)) | |
| 4812 (or (and ebnf-eps-prefix ; ensures that it's a string | |
| 4813 (stringp ebnf-eps-prefix)) | |
| 4814 (setq ebnf-eps-prefix "ebnf--")) | |
| 4815 (setq ebnf-entry-percentage ; ensures value between 0.0 and 1.0 | |
| 4816 (min (max ebnf-entry-percentage 0.0) 1.0) | |
| 4817 ebnf-action-list (if ebnf-horizontal-orientation | |
| 4818 '(nil keep-line) | |
| 4819 '(keep-line)) | |
| 4820 ebnf-settings nil | |
| 4821 ebnf-fonts-required nil | |
| 4822 ebnf-action nil | |
| 4823 ebnf-default-p nil | |
| 4824 ebnf-eps-context nil | |
| 4825 ebnf-eps-production-list nil | |
| 4826 ebnf-eps-upper-x 0.0 | |
| 4827 ebnf-eps-upper-y 0.0 | |
| 4828 ebnf-font-height-P (ebnf-font-height ebnf-production-font) | |
| 4829 ebnf-font-height-T (ebnf-font-height ebnf-terminal-font) | |
| 4830 ebnf-font-height-NT (ebnf-font-height ebnf-non-terminal-font) | |
| 4831 ebnf-font-height-S (ebnf-font-height ebnf-special-font) | |
| 4832 ebnf-font-height-E (ebnf-font-height ebnf-except-font) | |
| 4833 ebnf-font-height-R (ebnf-font-height ebnf-repeat-font) | |
| 4834 ebnf-font-width-P (ebnf-font-width ebnf-production-font) | |
| 4835 ebnf-font-width-T (ebnf-font-width ebnf-terminal-font) | |
| 4836 ebnf-font-width-NT (ebnf-font-width ebnf-non-terminal-font) | |
| 4837 ebnf-font-width-S (ebnf-font-width ebnf-special-font) | |
| 4838 ebnf-font-width-E (ebnf-font-width ebnf-except-font) | |
| 4839 ebnf-font-width-R (ebnf-font-width ebnf-repeat-font) | |
| 4840 ebnf-space-T (* ebnf-font-height-T 0.5) | |
| 4841 ebnf-space-NT (* ebnf-font-height-NT 0.5) | |
| 4842 ebnf-space-S (* ebnf-font-height-S 0.5) | |
| 4843 ebnf-space-E (* ebnf-font-height-E 0.5) | |
| 4844 ebnf-space-R (* ebnf-font-height-R 0.5)) | |
| 4845 (let ((basic (+ ebnf-font-height-T ebnf-font-height-NT))) | |
| 4846 (setq ebnf-basic-width (* basic 0.5) | |
| 4847 ebnf-horizontal-space (+ basic basic) | |
| 4848 ebnf-basic-height ebnf-basic-width | |
| 4849 ebnf-vertical-space ebnf-basic-width) | |
| 4850 ;; ensures value is greater than zero | |
| 4851 (or (and (numberp ebnf-production-horizontal-space) | |
| 4852 (> ebnf-production-horizontal-space 0.0)) | |
| 4853 (setq ebnf-production-horizontal-space basic)) | |
| 4854 ;; ensures value is greater than zero | |
| 4855 (or (and (numberp ebnf-production-vertical-space) | |
| 4856 (> ebnf-production-vertical-space 0.0)) | |
| 4857 (setq ebnf-production-vertical-space basic)))) | |
| 4858 | |
| 4859 | |
| 4860 (defsubst ebnf-shape-value (sym alist) | |
| 4861 (or (cdr (assq sym alist)) 0)) | |
| 4862 | |
| 4863 | |
| 4864 (defsubst ebnf-boolean (value) | |
| 4865 (if value "true" "false")) | |
| 4866 | |
| 4867 | |
| 4868 (defun ebnf-begin-file () | |
| 4869 (ps-flush-output) | |
| 4870 (save-excursion | |
| 4871 (set-buffer ps-spool-buffer) | |
| 4872 (goto-char (point-min)) | |
| 4873 (and (search-forward "%%Creator: " nil t) | |
| 4874 (not (search-forward "& ebnf2ps v" | |
| 4875 (save-excursion (end-of-line) (point)) | |
| 4876 t)) | |
| 4877 (progn | |
| 4878 ;; adjust creator comment | |
| 4879 (end-of-line) | |
| 4880 (backward-char) | |
| 4881 (insert " & ebnf2ps v" ebnf-version) | |
| 4882 ;; insert ebnf settings & engine | |
| 4883 (goto-char (point-max)) | |
|
39342
73061d0eb82e
Replace "Prologue" by "Prolog" in PostScript
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
4884 (search-backward "\n%%EndProlog\n") |
| 27451 | 4885 (ebnf-insert-ebnf-prologue) |
| 4886 (ps-output "\n"))))) | |
| 4887 | |
| 4888 | |
| 4889 (defun ebnf-eps-finish-and-write (buffer filename) | |
|
54659
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4890 (when (buffer-modified-p buffer) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4891 (save-excursion |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4892 (set-buffer buffer) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4893 (setq ebnf-eps-upper-x (max ebnf-eps-upper-x ebnf-eps-max-width) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4894 ebnf-eps-upper-y (if (zerop ebnf-eps-upper-y) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4895 ebnf-eps-max-height |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4896 (+ ebnf-eps-upper-y |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4897 ebnf-production-vertical-space |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4898 ebnf-eps-max-height))) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4899 ;; prologue |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4900 (goto-char (point-min)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4901 (insert |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4902 "%!PS-Adobe-3.0 EPSF-3.0" |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4903 "\n%%BoundingBox: 0 0 " |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4904 (format "%d %d" (1+ ebnf-eps-upper-x) (1+ ebnf-eps-upper-y)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4905 "\n%%Title: " filename |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4906 "\n%%CreationDate: " (format-time-string "%T %b %d %Y") |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4907 "\n%%Creator: " (user-full-name) " (using ebnf2ps v" ebnf-version ")" |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4908 "\n%%DocumentNeededResources: font " |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4909 (or ebnf-fonts-required |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4910 (setq ebnf-fonts-required |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4911 (mapconcat 'identity |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4912 (ps-remove-duplicates |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4913 (mapcar 'ebnf-font-name-select |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4914 (list ebnf-production-font |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4915 ebnf-terminal-font |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4916 ebnf-non-terminal-font |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4917 ebnf-special-font |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4918 ebnf-except-font |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4919 ebnf-repeat-font))) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4920 "\n%%+ font "))) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4921 "\n%%Pages: 0\n%%EndComments\n\n%%BeginProlog\n" |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4922 ebnf-eps-prologue) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4923 (ebnf-insert-ebnf-prologue) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4924 (insert ebnf-eps-begin |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4925 "\n0 " (ebnf-format-float |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4926 (- ebnf-eps-upper-y (* ebnf-font-height-P 0.7))) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4927 " #ebnf2ps#begin\n") |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4928 ;; epilogue |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4929 (goto-char (point-max)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4930 (insert ebnf-eps-end) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4931 ;; write file |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4932 (message "Saving...") |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4933 (setq filename (expand-file-name filename)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4934 (let ((coding-system-for-write 'raw-text-unix)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4935 (write-region (point-min) (point-max) filename)) |
|
31c6392d9307
Write a buffer if and only if the buffer was modified.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54625
diff
changeset
|
4936 (message "Wrote %s" filename)))) |
| 27451 | 4937 |
| 4938 | |
| 4939 (defun ebnf-insert-ebnf-prologue () | |
| 4940 (insert | |
| 4941 (or ebnf-settings | |
| 4942 (setq ebnf-settings | |
| 4943 (concat | |
| 4944 "\n\n% === begin EBNF settings\n\n" | |
| 4945 ;; production | |
| 4946 (format "/fP %s /%s DefFont\n" | |
| 4947 (ebnf-format-float (ebnf-font-size ebnf-production-font)) | |
| 4948 (ebnf-font-name-select ebnf-production-font)) | |
| 4949 (ebnf-format-color "/ForegroundP %s def %% %s\n" | |
| 4950 (ebnf-font-foreground ebnf-production-font) | |
| 4951 "Black") | |
| 4952 (ebnf-format-color "/BackgroundP %s def %% %s\n" | |
| 4953 (ebnf-font-background ebnf-production-font) | |
| 4954 "White") | |
| 4955 (format "/EffectP %d def\n" | |
| 4956 (ebnf-font-attributes ebnf-production-font)) | |
| 4957 ;; terminal | |
| 4958 (format "/fT %s /%s DefFont\n" | |
| 4959 (ebnf-format-float (ebnf-font-size ebnf-terminal-font)) | |
| 4960 (ebnf-font-name-select ebnf-terminal-font)) | |
| 4961 (ebnf-format-color "/ForegroundT %s def %% %s\n" | |
| 4962 (ebnf-font-foreground ebnf-terminal-font) | |
| 4963 "Black") | |
| 4964 (ebnf-format-color "/BackgroundT %s def %% %s\n" | |
| 4965 (ebnf-font-background ebnf-terminal-font) | |
| 4966 "White") | |
| 4967 (format "/EffectT %d def\n" | |
| 4968 (ebnf-font-attributes ebnf-terminal-font)) | |
| 4969 (format "/BorderWidthT %s def\n" | |
| 4970 (ebnf-format-float ebnf-terminal-border-width)) | |
| 4971 (ebnf-format-color "/BorderColorT %s def %% %s\n" | |
| 4972 ebnf-terminal-border-color | |
| 4973 "Black") | |
| 4974 (format "/ShapeT %d def\n" | |
| 4975 (ebnf-shape-value ebnf-terminal-shape | |
| 4976 ebnf-terminal-shape-alist)) | |
| 4977 (format "/ShadowT %s def\n" | |
| 4978 (ebnf-boolean ebnf-terminal-shadow)) | |
| 4979 ;; non-terminal | |
| 4980 (format "/fNT %s /%s DefFont\n" | |
| 4981 (ebnf-format-float | |
| 4982 (ebnf-font-size ebnf-non-terminal-font)) | |
| 4983 (ebnf-font-name-select ebnf-non-terminal-font)) | |
| 4984 (ebnf-format-color "/ForegroundNT %s def %% %s\n" | |
| 4985 (ebnf-font-foreground ebnf-non-terminal-font) | |
| 4986 "Black") | |
| 4987 (ebnf-format-color "/BackgroundNT %s def %% %s\n" | |
| 4988 (ebnf-font-background ebnf-non-terminal-font) | |
| 4989 "White") | |
| 4990 (format "/EffectNT %d def\n" | |
| 4991 (ebnf-font-attributes ebnf-non-terminal-font)) | |
| 4992 (format "/BorderWidthNT %s def\n" | |
| 4993 (ebnf-format-float ebnf-non-terminal-border-width)) | |
| 4994 (ebnf-format-color "/BorderColorNT %s def %% %s\n" | |
| 4995 ebnf-non-terminal-border-color | |
| 4996 "Black") | |
| 4997 (format "/ShapeNT %d def\n" | |
| 4998 (ebnf-shape-value ebnf-non-terminal-shape | |
| 4999 ebnf-terminal-shape-alist)) | |
| 5000 (format "/ShadowNT %s def\n" | |
| 5001 (ebnf-boolean ebnf-non-terminal-shadow)) | |
| 5002 ;; special | |
| 5003 (format "/fS %s /%s DefFont\n" | |
| 5004 (ebnf-format-float (ebnf-font-size ebnf-special-font)) | |
| 5005 (ebnf-font-name-select ebnf-special-font)) | |
| 5006 (ebnf-format-color "/ForegroundS %s def %% %s\n" | |
| 5007 (ebnf-font-foreground ebnf-special-font) | |
| 5008 "Black") | |
| 5009 (ebnf-format-color "/BackgroundS %s def %% %s\n" | |
| 5010 (ebnf-font-background ebnf-special-font) | |
| 5011 "Gray95") | |
| 5012 (format "/EffectS %d def\n" | |
| 5013 (ebnf-font-attributes ebnf-special-font)) | |
| 5014 (format "/BorderWidthS %s def\n" | |
| 5015 (ebnf-format-float ebnf-special-border-width)) | |
| 5016 (ebnf-format-color "/BorderColorS %s def %% %s\n" | |
| 5017 ebnf-special-border-color | |
| 5018 "Black") | |
| 5019 (format "/ShapeS %d def\n" | |
| 5020 (ebnf-shape-value ebnf-special-shape | |
| 5021 ebnf-terminal-shape-alist)) | |
| 5022 (format "/ShadowS %s def\n" | |
| 5023 (ebnf-boolean ebnf-special-shadow)) | |
| 5024 ;; except | |
| 5025 (format "/fE %s /%s DefFont\n" | |
| 5026 (ebnf-format-float (ebnf-font-size ebnf-except-font)) | |
| 5027 (ebnf-font-name-select ebnf-except-font)) | |
| 5028 (ebnf-format-color "/ForegroundE %s def %% %s\n" | |
| 5029 (ebnf-font-foreground ebnf-except-font) | |
| 5030 "Black") | |
| 5031 (ebnf-format-color "/BackgroundE %s def %% %s\n" | |
| 5032 (ebnf-font-background ebnf-except-font) | |
| 5033 "Gray90") | |
| 5034 (format "/EffectE %d def\n" | |
| 5035 (ebnf-font-attributes ebnf-except-font)) | |
| 5036 (format "/BorderWidthE %s def\n" | |
| 5037 (ebnf-format-float ebnf-except-border-width)) | |
| 5038 (ebnf-format-color "/BorderColorE %s def %% %s\n" | |
| 5039 ebnf-except-border-color | |
| 5040 "Black") | |
| 5041 (format "/ShapeE %d def\n" | |
| 5042 (ebnf-shape-value ebnf-except-shape | |
| 5043 ebnf-terminal-shape-alist)) | |
| 5044 (format "/ShadowE %s def\n" | |
| 5045 (ebnf-boolean ebnf-except-shadow)) | |
| 5046 ;; repeat | |
| 5047 (format "/fR %s /%s DefFont\n" | |
| 5048 (ebnf-format-float (ebnf-font-size ebnf-repeat-font)) | |
| 5049 (ebnf-font-name-select ebnf-repeat-font)) | |
| 5050 (ebnf-format-color "/ForegroundR %s def %% %s\n" | |
| 5051 (ebnf-font-foreground ebnf-repeat-font) | |
| 5052 "Black") | |
| 5053 (ebnf-format-color "/BackgroundR %s def %% %s\n" | |
| 5054 (ebnf-font-background ebnf-repeat-font) | |
| 5055 "Gray85") | |
| 5056 (format "/EffectR %d def\n" | |
| 5057 (ebnf-font-attributes ebnf-repeat-font)) | |
| 5058 (format "/BorderWidthR %s def\n" | |
| 5059 (ebnf-format-float ebnf-repeat-border-width)) | |
| 5060 (ebnf-format-color "/BorderColorR %s def %% %s\n" | |
| 5061 ebnf-repeat-border-color | |
| 5062 "Black") | |
| 5063 (format "/ShapeR %d def\n" | |
| 5064 (ebnf-shape-value ebnf-repeat-shape | |
| 5065 ebnf-terminal-shape-alist)) | |
| 5066 (format "/ShadowR %s def\n" | |
| 5067 (ebnf-boolean ebnf-repeat-shadow)) | |
| 5068 ;; miscellaneous | |
| 5069 (format "/DefaultWidth %s def\n" | |
| 5070 (ebnf-format-float ebnf-default-width)) | |
| 5071 (format "/LineWidth %s def\n" | |
| 5072 (ebnf-format-float ebnf-line-width)) | |
| 5073 (ebnf-format-color "/LineColor %s def %% %s\n" | |
| 5074 ebnf-line-color | |
| 5075 "Black") | |
| 5076 (format "/ArrowShape %d def\n" | |
| 5077 (ebnf-shape-value ebnf-arrow-shape | |
| 5078 ebnf-arrow-shape-alist)) | |
| 5079 (format "/ChartShape %d def\n" | |
| 5080 (ebnf-shape-value ebnf-chart-shape | |
| 5081 ebnf-terminal-shape-alist)) | |
| 5082 (format "/UserArrow{%s}def\n" | |
| 31255 | 5083 (let ((arrow (eval ebnf-user-arrow))) |
| 5084 (if (stringp arrow) | |
| 5085 arrow | |
| 5086 ""))) | |
| 27451 | 5087 "\n% === end EBNF settings\n\n" |
| 5088 (and ebnf-debug-ps ebnf-debug)))) | |
| 5089 ebnf-prologue)) | |
| 5090 | |
| 5091 | |
| 5092 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5093 ;; Adjusting dimensions | |
| 5094 | |
| 5095 | |
| 5096 (defun ebnf-dimensions (tree) | |
| 5097 (let ((ebnf-total (length tree)) | |
| 5098 (ebnf-nprod 0)) | |
| 5099 (mapcar 'ebnf-production-dimension tree)) | |
| 5100 tree) | |
| 5101 | |
| 5102 | |
| 5103 ;; [empty width-fun dim-fun entry height width] | |
| 5104 ;;(defun ebnf-empty-dimension (empty) | |
| 5105 ;; ) | |
| 5106 | |
| 5107 | |
| 5108 ;; [production width-fun dim-fun entry height width name production action] | |
| 5109 (defun ebnf-production-dimension (production) | |
| 5110 (ebnf-message-info "Calculating dimensions") | |
| 5111 (ebnf-node-dimension-func (ebnf-node-production production)) | |
| 5112 (let* ((prod (ebnf-node-production production)) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5113 (height (+ (if ebnf-production-name-p |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5114 ebnf-font-height-P |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5115 0.0) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5116 ebnf-line-width ebnf-line-width |
| 27451 | 5117 ebnf-basic-height |
| 5118 (ebnf-node-height prod)))) | |
| 5119 (ebnf-node-entry production height) | |
| 5120 (ebnf-node-height production height) | |
| 5121 (ebnf-node-width production (+ (ebnf-node-width prod) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5122 ebnf-line-width |
| 27451 | 5123 ebnf-horizontal-space)))) |
| 5124 | |
| 5125 | |
| 5126 ;; [terminal width-fun dim-fun entry height width name] | |
| 5127 (defun ebnf-terminal-dimension (terminal) | |
| 5128 (ebnf-terminal-dimension1 terminal | |
| 5129 ebnf-font-height-T | |
| 5130 ebnf-font-width-T | |
| 5131 ebnf-space-T)) | |
| 5132 | |
| 5133 | |
| 5134 ;; [non-terminal width-fun dim-fun entry height width name] | |
| 5135 (defun ebnf-non-terminal-dimension (non-terminal) | |
| 5136 (ebnf-terminal-dimension1 non-terminal | |
| 5137 ebnf-font-height-NT | |
| 5138 ebnf-font-width-NT | |
| 5139 ebnf-space-NT)) | |
| 5140 | |
| 5141 | |
| 5142 ;; [special width-fun dim-fun entry height width name] | |
| 5143 (defun ebnf-special-dimension (special) | |
| 5144 (ebnf-terminal-dimension1 special | |
| 5145 ebnf-font-height-S | |
| 5146 ebnf-font-width-S | |
| 5147 ebnf-space-S)) | |
| 5148 | |
| 5149 | |
| 5150 (defun ebnf-terminal-dimension1 (node font-height font-width space) | |
| 5151 (let ((height (+ space font-height space)) | |
| 5152 (len (length (ebnf-node-name node)))) | |
| 5153 (ebnf-node-entry node (* height 0.5)) | |
| 5154 (ebnf-node-height node height) | |
| 5155 (ebnf-node-width node (+ ebnf-basic-width space | |
| 5156 (* len font-width) | |
| 5157 space ebnf-basic-width)))) | |
| 5158 | |
| 5159 | |
| 5160 (defconst ebnf-null-vector (vector t t t 0.0 0.0 0.0)) | |
| 5161 | |
| 5162 | |
| 5163 ;; [repeat width-fun dim-fun entry height width times element] | |
| 5164 (defun ebnf-repeat-dimension (repeat) | |
| 5165 (let ((times (ebnf-node-name repeat)) | |
| 5166 (element (ebnf-node-separator repeat))) | |
| 5167 (if element | |
| 5168 (ebnf-node-dimension-func element) | |
| 5169 (setq element ebnf-null-vector)) | |
| 5170 (ebnf-node-entry repeat (+ (ebnf-node-entry element) | |
| 5171 ebnf-space-R)) | |
| 5172 (ebnf-node-height repeat (+ (max (ebnf-node-height element) | |
| 5173 ebnf-font-height-S) | |
| 5174 ebnf-space-R ebnf-space-R)) | |
| 5175 (ebnf-node-width repeat (+ (ebnf-node-width element) | |
| 5176 ebnf-space-R ebnf-space-R ebnf-space-R | |
| 5177 ebnf-horizontal-space | |
| 5178 (* (length times) ebnf-font-width-R))))) | |
| 5179 | |
| 5180 | |
| 5181 ;; [except width-fun dim-fun entry height width element element] | |
| 5182 (defun ebnf-except-dimension (except) | |
| 5183 (let ((factor (ebnf-node-list except)) | |
| 5184 (element (ebnf-node-separator except))) | |
| 5185 (ebnf-node-dimension-func factor) | |
| 5186 (if element | |
| 5187 (ebnf-node-dimension-func element) | |
| 5188 (setq element ebnf-null-vector)) | |
| 5189 (ebnf-node-entry except (+ (max (ebnf-node-entry factor) | |
| 5190 (ebnf-node-entry element)) | |
| 5191 ebnf-space-E)) | |
| 5192 (ebnf-node-height except (+ (max (ebnf-node-height factor) | |
| 5193 (ebnf-node-height element)) | |
| 5194 ebnf-space-E ebnf-space-E)) | |
| 5195 (ebnf-node-width except (+ (ebnf-node-width factor) | |
| 5196 (ebnf-node-width element) | |
| 5197 ebnf-space-E ebnf-space-E | |
| 5198 ebnf-space-E ebnf-space-E | |
| 5199 ebnf-font-width-E | |
| 5200 ebnf-horizontal-space)))) | |
| 5201 | |
| 5202 | |
| 5203 ;; [alternative width-fun dim-fun entry height width list] | |
| 5204 (defun ebnf-alternative-dimension (alternative) | |
| 5205 (let ((body (ebnf-node-list alternative)) | |
| 5206 (lis (ebnf-node-list alternative))) | |
| 5207 (while lis | |
| 5208 (ebnf-node-dimension-func (car lis)) | |
| 5209 (setq lis (cdr lis))) | |
| 5210 (let ((height 0.0) | |
| 5211 (width 0.0) | |
| 5212 (alt body) | |
| 5213 (tail (car (last body))) | |
| 5214 (entry (ebnf-node-entry (car body))) | |
| 5215 node) | |
| 5216 (while alt | |
| 5217 (setq node (car alt) | |
| 5218 alt (cdr alt) | |
| 5219 height (+ (ebnf-node-height node) height) | |
| 5220 width (max (ebnf-node-width node) width))) | |
| 5221 (ebnf-adjust-width body width) | |
| 5222 (setq height (+ height (* (1- (length body)) ebnf-vertical-space))) | |
| 5223 (ebnf-node-entry alternative (+ entry | |
| 5224 (ebnf-entry | |
| 5225 (- height entry | |
| 5226 (- (ebnf-node-height tail) | |
| 5227 (ebnf-node-entry tail)))))) | |
| 5228 (ebnf-node-height alternative height) | |
| 5229 (ebnf-node-width alternative (+ width ebnf-horizontal-space)) | |
| 5230 (ebnf-node-list alternative body)))) | |
| 5231 | |
| 5232 | |
| 5233 ;; [optional width-fun dim-fun entry height width element] | |
| 5234 (defun ebnf-optional-dimension (optional) | |
| 5235 (let ((body (ebnf-node-list optional))) | |
| 5236 (ebnf-node-dimension-func body) | |
| 5237 (ebnf-node-entry optional (ebnf-node-entry body)) | |
| 5238 (ebnf-node-height optional (+ (ebnf-node-height body) | |
| 5239 ebnf-vertical-space)) | |
| 5240 (ebnf-node-width optional (+ (ebnf-node-width body) | |
| 5241 ebnf-horizontal-space)))) | |
| 5242 | |
| 5243 | |
| 5244 ;; [one-or-more width-fun dim-fun entry height width element separator] | |
| 5245 (defun ebnf-one-or-more-dimension (or-more) | |
| 5246 (let ((list-part (ebnf-node-list or-more)) | |
| 5247 (sep-part (ebnf-node-separator or-more))) | |
| 5248 (ebnf-node-dimension-func list-part) | |
| 5249 (and sep-part | |
| 5250 (ebnf-node-dimension-func sep-part)) | |
| 5251 (let ((height (+ (if sep-part | |
| 5252 (ebnf-node-height sep-part) | |
| 5253 0.0) | |
| 5254 ebnf-vertical-space | |
| 5255 (ebnf-node-height list-part))) | |
| 5256 (width (max (if sep-part | |
| 5257 (ebnf-node-width sep-part) | |
| 5258 0.0) | |
| 5259 (ebnf-node-width list-part)))) | |
| 5260 (when sep-part | |
| 5261 (ebnf-adjust-width list-part width) | |
| 5262 (ebnf-adjust-width sep-part width)) | |
| 5263 (ebnf-node-entry or-more (+ (- height (ebnf-node-height list-part)) | |
| 5264 (ebnf-node-entry list-part))) | |
| 5265 (ebnf-node-height or-more height) | |
| 5266 (ebnf-node-width or-more (+ width ebnf-horizontal-space))))) | |
| 5267 | |
| 5268 | |
| 5269 ;; [zero-or-more width-fun dim-fun entry height width element separator] | |
| 5270 (defun ebnf-zero-or-more-dimension (or-more) | |
| 5271 (let ((list-part (ebnf-node-list or-more)) | |
| 5272 (sep-part (ebnf-node-separator or-more))) | |
| 5273 (ebnf-node-dimension-func list-part) | |
| 5274 (and sep-part | |
| 5275 (ebnf-node-dimension-func sep-part)) | |
| 5276 (let ((height (+ (if sep-part | |
| 5277 (ebnf-node-height sep-part) | |
| 5278 0.0) | |
| 5279 ebnf-vertical-space | |
| 5280 (ebnf-node-height list-part) | |
| 5281 ebnf-vertical-space)) | |
| 5282 (width (max (if sep-part | |
| 5283 (ebnf-node-width sep-part) | |
| 5284 0.0) | |
| 5285 (ebnf-node-width list-part)))) | |
| 5286 (when sep-part | |
| 5287 (ebnf-adjust-width list-part width) | |
| 5288 (ebnf-adjust-width sep-part width)) | |
| 5289 (ebnf-node-entry or-more height) | |
| 5290 (ebnf-node-height or-more height) | |
| 5291 (ebnf-node-width or-more (+ width ebnf-horizontal-space))))) | |
| 5292 | |
| 5293 | |
| 5294 ;; [sequence width-fun dim-fun entry height width list] | |
| 5295 (defun ebnf-sequence-dimension (sequence) | |
| 5296 (let ((above 0.0) | |
| 5297 (below 0.0) | |
| 5298 (width 0.0) | |
| 5299 (lis (ebnf-node-list sequence)) | |
| 5300 entry node) | |
| 5301 (while lis | |
| 5302 (setq node (car lis) | |
| 5303 lis (cdr lis)) | |
| 5304 (ebnf-node-dimension-func node) | |
| 5305 (setq entry (ebnf-node-entry node) | |
| 5306 above (max above entry) | |
| 5307 below (max below (- (ebnf-node-height node) entry)) | |
| 5308 width (+ width (ebnf-node-width node)))) | |
| 5309 (ebnf-node-entry sequence above) | |
| 5310 (ebnf-node-height sequence (+ above below)) | |
| 5311 (ebnf-node-width sequence width))) | |
| 5312 | |
| 5313 | |
| 5314 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5315 ;; Adjusting width | |
| 5316 | |
| 5317 | |
| 5318 (defun ebnf-adjust-width (node width) | |
| 5319 (cond | |
| 5320 ((listp node) | |
| 5321 (prog1 | |
| 5322 node | |
| 5323 (while node | |
| 5324 (setcar node (ebnf-adjust-width (car node) width)) | |
| 5325 (setq node (cdr node))))) | |
| 5326 ((vectorp node) | |
| 5327 (cond | |
| 5328 ;; nothing to be done | |
| 5329 ((= width (ebnf-node-width node)) | |
| 5330 node) | |
| 5331 ;; left justify term | |
| 5332 ((eq ebnf-justify-sequence 'left) | |
| 5333 (ebnf-adjust-empty node width nil)) | |
| 5334 ;; right justify terms | |
| 5335 ((eq ebnf-justify-sequence 'right) | |
| 5336 (ebnf-adjust-empty node width t)) | |
| 5337 ;; centralize terms | |
| 5338 (t | |
| 5339 (ebnf-node-width-func node width) | |
| 5340 (ebnf-node-width node width) | |
| 5341 node) | |
| 5342 )) | |
| 5343 (t | |
| 5344 node) | |
| 5345 )) | |
| 5346 | |
| 5347 | |
| 5348 (defun ebnf-adjust-empty (node width last-p) | |
| 5349 (if (eq (ebnf-node-kind node) 'ebnf-generate-empty) | |
| 5350 (progn | |
| 5351 (ebnf-node-width node width) | |
| 5352 node) | |
| 5353 (let ((empty (ebnf-make-empty (- width (ebnf-node-width node))))) | |
| 5354 (ebnf-make-dup-sequence node | |
| 5355 (if last-p | |
| 5356 (list empty node) | |
| 5357 (list node empty)))))) | |
| 5358 | |
| 5359 | |
| 5360 ;; [terminal width-fun dim-fun entry height width name] | |
| 5361 ;; [non-terminal width-fun dim-fun entry height width name] | |
| 5362 ;; [empty width-fun dim-fun entry height width] | |
| 5363 ;; [special width-fun dim-fun entry height width name] | |
| 5364 ;; [repeat width-fun dim-fun entry height width times element] | |
| 5365 ;; [except width-fun dim-fun entry height width element element] | |
| 5366 ;;(defun ebnf-terminal-width (terminal width) | |
| 5367 ;; ) | |
| 5368 | |
| 5369 | |
| 5370 ;; [alternative width-fun dim-fun entry height width list] | |
| 5371 ;; [optional width-fun dim-fun entry height width element] | |
| 5372 (defun ebnf-alternative-width (alternative width) | |
| 5373 (ebnf-adjust-width (ebnf-node-list alternative) | |
| 5374 (- width ebnf-horizontal-space))) | |
| 5375 | |
| 5376 | |
| 5377 ;; [one-or-more width-fun dim-fun entry height width element separator] | |
| 5378 ;; [zero-or-more width-fun dim-fun entry height width element separator] | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5379 (defun ebnf-element-width (or-more width) |
| 27451 | 5380 (setq width (- width ebnf-horizontal-space)) |
| 5381 (ebnf-node-list or-more | |
| 5382 (ebnf-justify-list or-more | |
| 5383 (ebnf-node-list or-more) | |
| 5384 width)) | |
| 5385 (ebnf-node-separator or-more | |
| 5386 (ebnf-justify-list or-more | |
| 5387 (ebnf-node-separator or-more) | |
| 5388 width))) | |
| 5389 | |
| 5390 | |
| 5391 ;; [sequence width-fun dim-fun entry height width list] | |
| 5392 (defun ebnf-sequence-width (sequence width) | |
| 5393 (ebnf-node-list sequence | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
5394 (ebnf-justify-list sequence |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
5395 (ebnf-node-list sequence) |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
5396 width))) |
| 27451 | 5397 |
| 5398 | |
| 5399 (defun ebnf-justify-list (node seq width) | |
| 5400 (let ((seq-width (ebnf-node-width node))) | |
| 5401 (if (= width seq-width) | |
| 5402 seq | |
| 5403 (cond | |
| 5404 ;; left justify terms | |
| 5405 ((eq ebnf-justify-sequence 'left) | |
| 5406 (ebnf-justify node seq seq-width width t)) | |
| 5407 ;; right justify terms | |
| 5408 ((eq ebnf-justify-sequence 'right) | |
| 5409 (ebnf-justify node seq seq-width width nil)) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5410 ;; centralize terms -- element |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5411 ((vectorp seq) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5412 (ebnf-adjust-width seq width)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5413 ;; centralize terms -- list |
| 27451 | 5414 (t |
| 5415 (let ((the-width (/ (- width seq-width) (length seq))) | |
| 5416 (lis seq)) | |
| 5417 (while lis | |
| 5418 (ebnf-adjust-width (car lis) | |
| 5419 (+ (ebnf-node-width (car lis)) | |
| 5420 the-width)) | |
| 5421 (setq lis (cdr lis))) | |
| 5422 seq)) | |
| 5423 )))) | |
| 5424 | |
| 5425 | |
| 5426 (defun ebnf-justify (node seq seq-width width last-p) | |
| 5427 (let ((term (car (if last-p (last seq) seq)))) | |
| 5428 (cond | |
| 5429 ;; adjust empty term | |
| 5430 ((eq (ebnf-node-kind term) 'ebnf-generate-empty) | |
| 5431 (ebnf-node-width term (+ (- width seq-width) | |
| 5432 (ebnf-node-width term))) | |
| 5433 seq) | |
| 5434 ;; insert empty at end ==> left justify | |
| 5435 (last-p | |
| 5436 (nconc seq | |
| 5437 (list (ebnf-make-empty (- width seq-width))))) | |
| 5438 ;; insert empty at beginning ==> right justify | |
| 5439 (t | |
| 5440 (cons (ebnf-make-empty (- width seq-width)) | |
| 5441 seq)) | |
| 5442 ))) | |
| 5443 | |
| 5444 | |
| 5445 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5446 ;; Functions used by parsers | |
| 5447 | |
| 5448 | |
| 5449 (defun ebnf-eps-add-context (name) | |
| 5450 (let ((filename (ebnf-eps-filename name))) | |
| 5451 (if (member filename ebnf-eps-context) | |
| 5452 (error "Try to open an already opened EPS file: %s" filename) | |
| 5453 (setq ebnf-eps-context (cons filename ebnf-eps-context))))) | |
| 5454 | |
| 5455 | |
| 5456 (defun ebnf-eps-remove-context (name) | |
| 5457 (let ((filename (ebnf-eps-filename name))) | |
| 5458 (if (member filename ebnf-eps-context) | |
| 5459 (setq ebnf-eps-context (delete filename ebnf-eps-context)) | |
| 5460 (error "Try to close a not opened EPS file: %s" filename)))) | |
| 5461 | |
| 5462 | |
| 5463 (defun ebnf-eps-add-production (header) | |
| 5464 (and ebnf-eps-executing | |
| 5465 ebnf-eps-context | |
| 5466 (let ((prod (assoc header ebnf-eps-production-list))) | |
| 5467 (if prod | |
| 5468 (setcdr prod (append ebnf-eps-context (cdr prod))) | |
| 5469 (setq ebnf-eps-production-list | |
| 5470 (cons (cons header (ebnf-dup-list ebnf-eps-context)) | |
| 5471 ebnf-eps-production-list)))))) | |
| 5472 | |
| 5473 | |
| 5474 (defun ebnf-dup-list (old) | |
| 5475 (let (new) | |
| 5476 (while old | |
| 5477 (setq new (cons (car old) new) | |
| 5478 old (cdr old))) | |
| 5479 (nreverse new))) | |
| 5480 | |
| 5481 | |
| 5482 (defun ebnf-buffer-substring (chars) | |
| 5483 (buffer-substring-no-properties | |
| 5484 (point) | |
| 5485 (progn | |
| 5486 (skip-chars-forward chars ebnf-limit) | |
| 5487 (point)))) | |
| 5488 | |
| 5489 | |
|
34803
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
5490 ;; replace the range "\240-\377" (see `ebnf-range-regexp'). |
|
de1f65fa5dcd
Fix a problem with skip-chars-forward: it doesn't accept
Gerd Moellmann <gerd@gnu.org>
parents:
31255
diff
changeset
|
5491 (defconst ebnf-8-bit-chars (ebnf-range-regexp "" ?\240 ?\377)) |
|
30572
f0463edb8518
Get around a bug on skip-chars-forward.
Gerd Moellmann <gerd@gnu.org>
parents:
30552
diff
changeset
|
5492 |
|
f0463edb8518
Get around a bug on skip-chars-forward.
Gerd Moellmann <gerd@gnu.org>
parents:
30552
diff
changeset
|
5493 |
| 27451 | 5494 (defun ebnf-string (chars eos-char kind) |
| 5495 (forward-char) | |
| 5496 (buffer-substring-no-properties | |
| 5497 (point) | |
| 5498 (progn | |
|
30572
f0463edb8518
Get around a bug on skip-chars-forward.
Gerd Moellmann <gerd@gnu.org>
parents:
30552
diff
changeset
|
5499 ;;(skip-chars-forward (concat chars "\240-\377") ebnf-limit) |
|
f0463edb8518
Get around a bug on skip-chars-forward.
Gerd Moellmann <gerd@gnu.org>
parents:
30552
diff
changeset
|
5500 (skip-chars-forward (concat chars ebnf-8-bit-chars) ebnf-limit) |
| 27451 | 5501 (if (or (eobp) (/= (following-char) eos-char)) |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
35888
diff
changeset
|
5502 (error "Illegal %s: missing `%c'" kind eos-char) |
| 27451 | 5503 (forward-char) |
| 5504 (1- (point)))))) | |
| 5505 | |
| 5506 | |
| 5507 (defun ebnf-get-string () | |
| 5508 (forward-char) | |
| 5509 (buffer-substring-no-properties (point) (ebnf-end-of-string))) | |
| 5510 | |
| 5511 | |
| 5512 (defun ebnf-end-of-string () | |
| 5513 (let ((n 1)) | |
| 5514 (while (> (logand n 1) 0) | |
| 5515 (skip-chars-forward "^\"" ebnf-limit) | |
| 5516 (setq n (- (skip-chars-backward "\\\\"))) | |
| 5517 (goto-char (+ (point) n 1)))) | |
| 5518 (if (= (preceding-char) ?\") | |
| 5519 (1- (point)) | |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
35888
diff
changeset
|
5520 (error "Missing `\"'"))) |
| 27451 | 5521 |
| 5522 | |
| 5523 (defun ebnf-trim-right (str) | |
| 5524 (let* ((len (1- (length str))) | |
| 5525 (index len)) | |
| 5526 (while (and (> index 0) (= (aref str index) ?\ )) | |
| 5527 (setq index (1- index))) | |
| 5528 (if (= index len) | |
| 5529 str | |
| 5530 (substring str 0 (1+ index))))) | |
| 5531 | |
| 5532 | |
| 5533 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5534 ;; Vector creation | |
| 5535 | |
| 5536 | |
| 5537 (defun ebnf-make-empty (&optional width) | |
| 5538 (vector 'ebnf-generate-empty | |
| 5539 'ignore | |
| 5540 'ignore | |
| 5541 0.0 | |
| 5542 0.0 | |
| 5543 (or width ebnf-horizontal-space))) | |
| 5544 | |
| 5545 | |
| 5546 (defun ebnf-make-terminal (name) | |
| 5547 (ebnf-make-terminal1 name | |
| 5548 'ebnf-generate-terminal | |
| 5549 'ebnf-terminal-dimension)) | |
| 5550 | |
| 5551 | |
| 5552 (defun ebnf-make-non-terminal (name) | |
| 5553 (ebnf-make-terminal1 name | |
| 5554 'ebnf-generate-non-terminal | |
| 5555 'ebnf-non-terminal-dimension)) | |
| 5556 | |
| 5557 | |
| 5558 (defun ebnf-make-special (name) | |
| 5559 (ebnf-make-terminal1 name | |
| 5560 'ebnf-generate-special | |
| 5561 'ebnf-special-dimension)) | |
| 5562 | |
| 5563 | |
| 5564 (defun ebnf-make-terminal1 (name gen-func dim-func) | |
| 5565 (vector gen-func | |
| 5566 'ignore | |
| 5567 dim-func | |
| 5568 0.0 | |
| 5569 0.0 | |
| 5570 0.0 | |
| 5571 (let ((len (length name))) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5572 (cond ((> len 3) name) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5573 ((= len 3) (concat name " ")) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5574 ((= len 2) (concat " " name " ")) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5575 ((= len 1) (concat " " name " ")) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5576 (t " "))) |
| 27451 | 5577 ebnf-default-p)) |
| 5578 | |
| 5579 | |
| 5580 (defun ebnf-make-one-or-more (list-part &optional sep-part) | |
| 5581 (ebnf-make-or-more1 'ebnf-generate-one-or-more | |
| 5582 'ebnf-one-or-more-dimension | |
| 5583 list-part | |
| 5584 sep-part)) | |
| 5585 | |
| 5586 | |
| 5587 (defun ebnf-make-zero-or-more (list-part &optional sep-part) | |
| 5588 (ebnf-make-or-more1 'ebnf-generate-zero-or-more | |
| 5589 'ebnf-zero-or-more-dimension | |
| 5590 list-part | |
| 5591 sep-part)) | |
| 5592 | |
| 5593 | |
| 5594 (defun ebnf-make-or-more1 (gen-func dim-func list-part sep-part) | |
| 5595 (vector gen-func | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5596 'ebnf-element-width |
| 27451 | 5597 dim-func |
| 5598 0.0 | |
| 5599 0.0 | |
| 5600 0.0 | |
| 5601 (if (listp list-part) | |
| 5602 (ebnf-make-sequence list-part) | |
| 5603 list-part) | |
| 5604 (if (and sep-part (listp sep-part)) | |
| 5605 (ebnf-make-sequence sep-part) | |
| 5606 sep-part))) | |
| 5607 | |
| 5608 | |
| 5609 (defun ebnf-make-production (name prod action) | |
| 5610 (vector 'ebnf-generate-production | |
| 5611 'ignore | |
| 5612 'ebnf-production-dimension | |
| 5613 0.0 | |
| 5614 0.0 | |
| 5615 0.0 | |
| 5616 name | |
| 5617 prod | |
| 5618 action)) | |
| 5619 | |
| 5620 | |
| 5621 (defun ebnf-make-alternative (body) | |
| 5622 (vector 'ebnf-generate-alternative | |
| 5623 'ebnf-alternative-width | |
| 5624 'ebnf-alternative-dimension | |
| 5625 0.0 | |
| 5626 0.0 | |
| 5627 0.0 | |
| 5628 body)) | |
| 5629 | |
| 5630 | |
| 5631 (defun ebnf-make-optional (body) | |
| 5632 (vector 'ebnf-generate-optional | |
| 5633 'ebnf-alternative-width | |
| 5634 'ebnf-optional-dimension | |
| 5635 0.0 | |
| 5636 0.0 | |
| 5637 0.0 | |
| 5638 body)) | |
| 5639 | |
| 5640 | |
| 5641 (defun ebnf-make-except (factor exception) | |
| 5642 (vector 'ebnf-generate-except | |
| 5643 'ignore | |
| 5644 'ebnf-except-dimension | |
| 5645 0.0 | |
| 5646 0.0 | |
| 5647 0.0 | |
| 5648 factor | |
| 5649 exception)) | |
| 5650 | |
| 5651 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5652 (defun ebnf-make-repeat (times primary &optional upper) |
| 27451 | 5653 (vector 'ebnf-generate-repeat |
| 5654 'ignore | |
| 5655 'ebnf-repeat-dimension | |
| 5656 0.0 | |
| 5657 0.0 | |
| 5658 0.0 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5659 (cond ((and times upper) ; L * U, L * L |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5660 (if (string= times upper) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5661 (if (string= times "") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5662 " * " |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5663 times) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5664 (concat times " * " upper))) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5665 (times ; L * |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5666 (concat times " *")) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5667 (upper ; * U |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5668 (concat "* " upper)) |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5669 (t ; * |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5670 " * ")) |
| 27451 | 5671 primary)) |
| 5672 | |
| 5673 | |
| 5674 (defun ebnf-make-sequence (seq) | |
| 5675 (vector 'ebnf-generate-sequence | |
| 5676 'ebnf-sequence-width | |
| 5677 'ebnf-sequence-dimension | |
| 5678 0.0 | |
| 5679 0.0 | |
| 5680 0.0 | |
| 5681 seq)) | |
| 5682 | |
| 5683 | |
| 5684 (defun ebnf-make-dup-sequence (node seq) | |
| 5685 (vector 'ebnf-generate-sequence | |
| 5686 'ebnf-sequence-width | |
| 5687 'ebnf-sequence-dimension | |
| 5688 (ebnf-node-entry node) | |
| 5689 (ebnf-node-height node) | |
| 5690 (ebnf-node-width node) | |
| 5691 seq)) | |
| 5692 | |
| 5693 | |
| 5694 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5695 ;; Optimizers used by parsers | |
| 5696 | |
| 5697 | |
| 5698 (defun ebnf-token-except (element exception) | |
| 5699 (cons (prog1 | |
| 5700 (car exception) | |
| 5701 (setq exception (cdr exception))) | |
| 5702 (and element ; EMPTY - A ==> EMPTY | |
| 5703 (let ((kind (ebnf-node-kind element))) | |
| 5704 (cond | |
| 5705 ;; [ A ]- ==> A | |
| 5706 ((and (null exception) | |
| 5707 (eq kind 'ebnf-generate-optional)) | |
| 5708 (ebnf-node-list element)) | |
| 5709 ;; { A }- ==> { A }+ | |
| 5710 ((and (null exception) | |
| 5711 (eq kind 'ebnf-generate-zero-or-more)) | |
| 5712 (ebnf-node-kind element 'ebnf-generate-one-or-more) | |
| 5713 (ebnf-node-dimension-func element 'ebnf-one-or-more-dimension) | |
| 5714 element) | |
| 5715 ;; ( A | EMPTY )- ==> A | |
| 5716 ;; ( A | B | EMPTY )- ==> A | B | |
| 5717 ((and (null exception) | |
| 5718 (eq kind 'ebnf-generate-alternative) | |
|
30552
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
5719 (eq (ebnf-node-kind |
|
a7498193b035
Update ps-print functions call. Indentation fix. Doc
Gerd Moellmann <gerd@gnu.org>
parents:
27539
diff
changeset
|
5720 (car (last (ebnf-node-list element)))) |
| 27451 | 5721 'ebnf-generate-empty)) |
| 5722 (let ((elt (ebnf-node-list element)) | |
| 5723 bef) | |
| 5724 (while (cdr elt) | |
| 5725 (setq bef elt | |
| 5726 elt (cdr elt))) | |
| 5727 (if (null bef) | |
| 5728 ;; this should not happen!!?! | |
| 5729 (setq element (ebnf-make-empty | |
| 5730 (ebnf-node-width element))) | |
| 5731 (setcdr bef nil) | |
| 5732 (setq elt (ebnf-node-list element)) | |
| 5733 (and (= (length elt) 1) | |
| 5734 (setq element (car elt)))) | |
| 5735 element)) | |
| 5736 ;; A - B | |
| 5737 (t | |
| 5738 (ebnf-make-except element exception)) | |
| 5739 ))))) | |
| 5740 | |
| 5741 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5742 (defun ebnf-token-repeat (times repeat &optional upper) |
| 27451 | 5743 (if (null (cdr repeat)) |
| 5744 ;; n * EMPTY ==> EMPTY | |
| 5745 repeat | |
| 5746 ;; n * term | |
| 5747 (cons (car repeat) | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5748 (ebnf-make-repeat times (cdr repeat) upper)))) |
| 27451 | 5749 |
| 5750 | |
| 5751 (defun ebnf-token-optional (body) | |
| 5752 (let ((kind (ebnf-node-kind body))) | |
| 5753 (cond | |
| 5754 ;; [ EMPTY ] ==> EMPTY | |
| 5755 ((eq kind 'ebnf-generate-empty) | |
| 5756 nil) | |
| 5757 ;; [ { A }* ] ==> { A }* | |
| 5758 ((eq kind 'ebnf-generate-zero-or-more) | |
| 5759 body) | |
| 5760 ;; [ { A }+ ] ==> { A }* | |
| 5761 ((eq kind 'ebnf-generate-one-or-more) | |
| 5762 (ebnf-node-kind body 'ebnf-generate-zero-or-more) | |
| 5763 body) | |
| 5764 ;; [ A | B ] ==> A | B | EMPTY | |
| 5765 ((eq kind 'ebnf-generate-alternative) | |
| 5766 (ebnf-node-list body (nconc (ebnf-node-list body) | |
| 5767 (list (ebnf-make-empty)))) | |
| 5768 body) | |
| 5769 ;; [ A ] | |
| 5770 (t | |
| 5771 (ebnf-make-optional body)) | |
| 5772 ))) | |
| 5773 | |
| 5774 | |
| 5775 (defun ebnf-token-alternative (body sequence) | |
| 5776 (if (null body) | |
| 5777 (if (cdr sequence) | |
| 5778 sequence | |
| 5779 (cons (car sequence) | |
| 5780 (ebnf-make-empty))) | |
| 5781 (cons (car sequence) | |
| 5782 (let ((seq (cdr sequence))) | |
| 5783 (if (and (= (length body) 1) (null seq)) | |
| 5784 (car body) | |
| 5785 (ebnf-make-alternative (nreverse (if seq | |
| 5786 (cons seq body) | |
| 5787 body)))))))) | |
| 5788 | |
| 54714 | 5789 |
| 5790 (defun ebnf-token-sequence (sequence) | |
| 5791 (cond | |
| 5792 ;; null sequence | |
| 5793 ((null sequence) | |
| 5794 (ebnf-make-empty)) | |
| 5795 ;; sequence with only one element | |
| 5796 ((= (length sequence) 1) | |
| 5797 (car sequence)) | |
| 5798 ;; a real sequence | |
| 5799 (t | |
| 5800 (ebnf-make-sequence (nreverse sequence))) | |
| 5801 )) | |
| 5802 | |
| 27451 | 5803 |
| 5804 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5805 ;; Variables used by parsers | |
| 5806 | |
| 5807 | |
| 5808 (defconst ebnf-comment-table | |
| 5809 (let ((table (make-vector 256 nil))) | |
| 5810 ;; Override special comment character: | |
| 5811 (aset table ?< 'newline) | |
| 5812 (aset table ?> 'keep-line) | |
| 54714 | 5813 (aset table ?^ 'form-feed) |
| 27451 | 5814 table) |
| 5815 "Vector used to map characters to a special comment token.") | |
| 5816 | |
| 5817 | |
| 5818 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5819 ;; To make this file smaller, some commands go in a separate file. | |
| 5820 ;; But autoload them here to make the separation invisible. | |
| 5821 | |
|
54140
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5822 (autoload 'ebnf-abn-parser "ebnf-abn" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5823 "ABNF parser.") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5824 |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5825 (autoload 'ebnf-abn-initialize "ebnf-abn" |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5826 "Initialize ABNF token table.") |
|
766aaa5bded5
ABNF parser. Fix bug on productions like test = {"test"}* | ("tt" ["test"]). Reported by Markus Dreyer.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5827 |
| 27451 | 5828 (autoload 'ebnf-bnf-parser "ebnf-bnf" |
| 5829 "EBNF parser.") | |
| 5830 | |
| 5831 (autoload 'ebnf-bnf-initialize "ebnf-bnf" | |
| 5832 "Initialize EBNF token table.") | |
| 5833 | |
| 5834 (autoload 'ebnf-iso-parser "ebnf-iso" | |
| 5835 "ISO EBNF parser.") | |
| 5836 | |
| 5837 (autoload 'ebnf-iso-initialize "ebnf-iso" | |
| 5838 "Initialize ISO EBNF token table.") | |
| 5839 | |
| 5840 (autoload 'ebnf-yac-parser "ebnf-yac" | |
| 5841 "Yacc/Bison parser.") | |
| 5842 | |
| 5843 (autoload 'ebnf-yac-initialize "ebnf-yac" | |
| 5844 "Initializations for Yacc/Bison parser.") | |
| 5845 | |
| 54625 | 5846 (autoload 'ebnf-ebx-parser "ebnf-ebx" |
| 5847 "EBNFX parser.") | |
| 5848 | |
| 5849 (autoload 'ebnf-ebx-initialize "ebnf-ebx" | |
| 5850 "Initializations for EBNFX parser.") | |
| 5851 | |
| 54714 | 5852 (autoload 'ebnf-dtd-parser "ebnf-dtd" |
| 5853 "DTD parser.") | |
| 5854 | |
| 5855 (autoload 'ebnf-dtd-initialize "ebnf-dtd" | |
| 5856 "Initializations for DTD parser.") | |
| 27451 | 5857 |
| 5858 | |
| 5859 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 5860 | |
| 5861 | |
| 5862 (provide 'ebnf2ps) | |
| 5863 | |
| 52401 | 5864 ;;; arch-tag: 148bc8af-5398-468b-b922-eeb7afef3e4f |
| 27451 | 5865 ;;; ebnf2ps.el ends here |
