resurrect mescc.
This commit is contained in:
parent
7ff86c393f
commit
c506880a14
10
scm.mes
10
scm.mes
|
@ -160,11 +160,11 @@
|
|||
(define else #t)
|
||||
|
||||
(define (error who . rest)
|
||||
(display "error:")
|
||||
(display who)
|
||||
(display ":")
|
||||
(display rest)
|
||||
(display newline))
|
||||
(display "error:" (current-error-port))
|
||||
(display who (current-error-port))
|
||||
(display ":" (current-error-port))
|
||||
(display rest (current-error-port))
|
||||
(newline (current-error-port)))
|
||||
|
||||
(define (syntax-error message . rest)
|
||||
(display "syntax-error:" (current-error-port))
|
||||
|
|
10
syntax.mes
10
syntax.mes
|
@ -1,11 +1,11 @@
|
|||
;; -*-scheme-*-
|
||||
|
||||
(define (syntax-error message thing)
|
||||
(display "syntax-error:")
|
||||
(display message)
|
||||
(display ":")
|
||||
(display thing)
|
||||
(newline))
|
||||
(display "syntax-error:" (current-error-port))
|
||||
(display message (current-error-port))
|
||||
(display ":" (current-error-port))
|
||||
(display thing (current-error-port))
|
||||
(newline (current-error-port)))
|
||||
|
||||
(define (silent-syntax-error message thing)
|
||||
*unspecified*)
|
||||
|
|
Loading…
Reference in a new issue