aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-19 23:45:35 +0000
committerJuanma Barranquero2006-11-19 23:45:35 +0000
commit6f19f70a41cd2532e0956e34e76cc8a8d3aa4f27 (patch)
tree86ded2374f137074ab33ed7d298003e1ae15646f
parent0c3f75f6c822bbd1f3e2411afe5e3cbea1706ed4 (diff)
downloademacs-6f19f70a41cd2532e0956e34e76cc8a8d3aa4f27.tar.gz
emacs-6f19f70a41cd2532e0956e34e76cc8a8d3aa4f27.zip
(ebnf-stop-on-error): Fix typo in docstring.
-rw-r--r--lisp/progmodes/ebnf2ps.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el
index c5278b2e4ad..eb203249253 100644
--- a/lisp/progmodes/ebnf2ps.el
+++ b/lisp/progmodes/ebnf2ps.el
@@ -275,7 +275,7 @@ Please send all bug fixes and enhancements to
275;; ;; 8-bit accentuated characters) except `"', as `"' is used to delimit a 275;; ;; 8-bit accentuated characters) except `"', as `"' is used to delimit a
276;; ;; terminal. Also, accepts escaped characters, that is, a character 276;; ;; terminal. Also, accepts escaped characters, that is, a character
277;; ;; pair starting with `\' followed by a printable character, for 277;; ;; pair starting with `\' followed by a printable character, for
278;; ;; example: \", \\. 278;; ;; example: \", \\.
279;; 279;;
280;; special = "[^?\\000-\\010\\012-\\037\\177-\\237]*". 280;; special = "[^?\\000-\\010\\012-\\037\\177-\\237]*".
281;; ;; that is, a valid special accepts any printable character (including 281;; ;; that is, a valid special accepts any printable character (including
@@ -800,7 +800,7 @@ Please send all bug fixes and enhancements to
800;; `ebnf-reset-style' Reset current style. 800;; `ebnf-reset-style' Reset current style.
801;; 801;;
802;; `ebnf-push-style' Push the current style and set STYLE as the current 802;; `ebnf-push-style' Push the current style and set STYLE as the current
803;; style. 803;; style.
804;; 804;;
805;; `ebnf-pop-style' Pop a style and set it as the current style. 805;; `ebnf-pop-style' Pop a style and set it as the current style.
806;; 806;;
@@ -1968,7 +1968,7 @@ when executing ebnf2ps, set `ebnf-use-float-format' to nil."
1968 1968
1969 1969
1970(defcustom ebnf-stop-on-error nil 1970(defcustom ebnf-stop-on-error nil
1971 "*Non-nil means signal error and stop. Otherwise, signal error and continue." 1971 "*Non-nil means signal error and stop. Otherwise, signal error and continue."
1972 :type 'boolean 1972 :type 'boolean
1973 :version "20" 1973 :version "20"
1974 :group 'ebnf2ps) 1974 :group 'ebnf2ps)