aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinicius Jose Latorre2007-02-03 00:18:24 +0000
committerVinicius Jose Latorre2007-02-03 00:18:24 +0000
commit4303661c5ec9737e2df5bf157481668acbf4503d (patch)
tree9c39e868d27a06c0f30ae0a16d2c9d27716757c8
parent10489fcbefcfe810f0e691b1816611cae7a3ec36 (diff)
downloademacs-4303661c5ec9737e2df5bf157481668acbf4503d.tar.gz
emacs-4303661c5ec9737e2df5bf157481668acbf4503d.zip
Doc fixes
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/ebnf2ps.el19
2 files changed, 15 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b1d229b7af..bc1c43ca971 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -4,6 +4,11 @@
4 for, e.g. "void (*hdone)();" in a k&r list. (No WS between 4 for, e.g. "void (*hdone)();" in a k&r list. (No WS between
5 adjacent paren groups). 5 adjacent paren groups).
6 6
72007-02-02 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8
9 * progmodes/ebnf2ps.el: Doc fixes.
10 (ebnf-eps-buffer, ebnf-eps-region, ebnf-syntax-alist): Doc fixes.
11
72007-02-02 Eli Zaretskii <eliz@gnu.org> 122007-02-02 Eli Zaretskii <eliz@gnu.org>
8 13
9 * dired-x.el (dired-do-relsymlink): Add reference to 14 * dired-x.el (dired-do-relsymlink): Add reference to
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el
index a36c79f8025..23ba4b55f33 100644
--- a/lisp/progmodes/ebnf2ps.el
+++ b/lisp/progmodes/ebnf2ps.el
@@ -100,7 +100,7 @@ Please send all bug fixes and enhancements to
100;; send the spooled images to the printer, use the command 100;; send the spooled images to the printer, use the command
101;; `ebnf-despool'. 101;; `ebnf-despool'.
102;; 102;;
103;; eps - The PostScript image is immediately sent to a EPS file. 103;; eps - The PostScript image is immediately sent to an EPS file.
104;; 104;;
105;; The spooling mechanism is the same as used by ps-print and was designed for 105;; The spooling mechanism is the same as used by ps-print and was designed for
106;; printing lots of small files to save paper that would otherwise be wasted on 106;; printing lots of small files to save paper that would otherwise be wasted on
@@ -807,11 +807,10 @@ Please send all bug fixes and enhancements to
807;; and name this group. So when you wish to apply these settings it's only 807;; and name this group. So when you wish to apply these settings it's only
808;; needed to give the name. 808;; needed to give the name.
809;; 809;;
810;; There is also a notion of simple inheritance of style; so, if you declare 810;; There is also a notion of simple inheritance of style: if you declare that
811;; that a style A inherits from a style B, all settings of B is applied first 811;; style A inherits from style B, all settings of B are applied first and then
812;; and then the settings of A is applied. This is useful when you wish to 812;; the settings of A are applied. This is useful when you wish to modify some
813;; modify some aspects of an existing style, but at same time wish to keep it 813;; aspects of an existing style, but at same time wish to keep it unmodified.
814;; unmodified.
815;; 814;;
816;; See documentation for `ebnf-style-database'. 815;; See documentation for `ebnf-style-database'.
817;; 816;;
@@ -1094,6 +1093,8 @@ Please send all bug fixes and enhancements to
1094;; Acknowledgements 1093;; Acknowledgements
1095;; ---------------- 1094;; ----------------
1096;; 1095;;
1096;; Thanks to Eli Zaretskii <eliz@gnu.org> for some doc fixes.
1097;;
1097;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions: 1098;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
1098;; - `ebnf-arrow-extra-width', `ebnf-arrow-scale', 1099;; - `ebnf-arrow-extra-width', `ebnf-arrow-scale',
1099;; `ebnf-production-name-p', `ebnf-stop-on-error', 1100;; `ebnf-production-name-p', `ebnf-stop-on-error',
@@ -2182,7 +2183,7 @@ See also `ebnf-eps-buffer'."
2182 2183
2183;;;###autoload 2184;;;###autoload
2184(defun ebnf-eps-buffer () 2185(defun ebnf-eps-buffer ()
2185 "Generate a PostScript syntactic chart image of the buffer in a EPS file. 2186 "Generate a PostScript syntactic chart image of the buffer in an EPS file.
2186 2187
2187Generate an EPS file for each production in the buffer. 2188Generate an EPS file for each production in the buffer.
2188The EPS file name has the following form: 2189The EPS file name has the following form:
@@ -2206,7 +2207,7 @@ WARNING: This function does *NOT* ask any confirmation to override existing
2206 2207
2207;;;###autoload 2208;;;###autoload
2208(defun ebnf-eps-region (from to) 2209(defun ebnf-eps-region (from to)
2209 "Generate a PostScript syntactic chart image of the region in a EPS file. 2210 "Generate a PostScript syntactic chart image of the region in an EPS file.
2210 2211
2211Generate an EPS file for each production in the region. 2212Generate an EPS file for each production in the region.
2212The EPS file name has the following form: 2213The EPS file name has the following form:
@@ -4828,7 +4829,7 @@ killed after process termination."
4828 (ebnf ebnf-bnf-parser ebnf-bnf-initialize) 4829 (ebnf ebnf-bnf-parser ebnf-bnf-initialize)
4829 (ebnfx ebnf-ebx-parser ebnf-ebx-initialize) 4830 (ebnfx ebnf-ebx-parser ebnf-ebx-initialize)
4830 (dtd ebnf-dtd-parser ebnf-dtd-initialize)) 4831 (dtd ebnf-dtd-parser ebnf-dtd-initialize))
4831 "Alist associating EBNF syntax with a parser and a initializer.") 4832 "Alist associating EBNF syntax with a parser and an initializer.")
4832 4833
4833 4834
4834(defun ebnf-begin-job () 4835(defun ebnf-begin-job ()