comparison lisp/progmodes/ebnf2ps.el @ 90667:dbe3f29e61d6

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 505-522) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: etc/TUTORIAL.cn: Updated. - Merge from erc--emacs--22 * gnus--rel--5.10 (patch 164-167) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-137
author Miles Bader <miles@gnu.org>
date Tue, 21 Nov 2006 08:56:38 +0000
parents bb0e318b7c53 5bc3fbbf9e9b
children 0b79f231aae3
comparison
equal deleted inserted replaced
90666:00d54c8fa693 90667:dbe3f29e61d6
273 ;; terminal = "\\([^\"\\]\\|\\\\[ -~\\240-\\377]\\)+". 273 ;; terminal = "\\([^\"\\]\\|\\\\[ -~\\240-\\377]\\)+".
274 ;; ;; that is, a valid terminal accepts any printable character (including 274 ;; ;; that is, a valid terminal accepts any printable character (including
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
282 ;; ;; 8-bit accentuated characters) and tabs except `?', as `?' is used to 282 ;; ;; 8-bit accentuated characters) and tabs except `?', as `?' is used to
283 ;; ;; delimit a special. 283 ;; ;; delimit a special.
798 ;; `ebnf-apply-style' Set STYLE as the current style. 798 ;; `ebnf-apply-style' Set STYLE as the current style.
799 ;; 799 ;;
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 ;;
807 ;; These commands help to put together a lot of variable settings in a group 807 ;; These commands help to put together a lot of variable settings in a group
808 ;; and name this group. So when you wish to apply these settings it's only 808 ;; and name this group. So when you wish to apply these settings it's only
1966 :version "20" 1966 :version "20"
1967 :group 'ebnf2ps) 1967 :group 'ebnf2ps)
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. Nil means 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)
1975 1975
1976 1976