* Added error-handling-mode macro.

This commit is contained in:
Abdulaziz Ghuloum 2007-10-11 21:51:15 -04:00
parent 12f3041f03
commit 0c754c1939
4 changed files with 6 additions and 2 deletions

Binary file not shown.

View File

@ -132,6 +132,7 @@
[trace-lambda (macro . trace-lambda)]
[trace-define (macro . trace-define)]
[eol-style (macro . eol-style)]
[error-handling-mode (macro . error-handling-mode)]
))
(define library-legend
@ -965,7 +966,7 @@
[scheme-report-environment r5 se]
[close-port r ip]
[eol-style i r ip]
[error-handling-mode r ip]
[error-handling-mode i r ip]
[file-options r ip]
[flush-output-port i r ip]
[get-bytevector-all r ip]

View File

@ -1914,6 +1914,9 @@
((eol-style)
(lambda (x)
(symbol-macro x '(none lf cr crlf nel crnel ls))))
((error-handling-mode)
(lambda (x)
(symbol-macro x '(ignore raise replace))))
((... => _ else unquote unquote-splicing
unsyntax unsyntax-splicing)
incorrect-usage-macro)

View File

@ -545,7 +545,7 @@
;;;
[close-port S ip]
[eol-style C ip]
[error-handling-mode S ip]
[error-handling-mode C ip]
[file-options S ip]
[flush-output-port S ip]
[get-bytevector-all S ip]