Ticket #980: parse-input.diff
File parse-input.diff, 673 bytes (added by , 12 years ago) |
---|
-
input-parse-chicken.scm
14 14 (define char-tab (ascii->char 9)) 15 15 (define char-newline (ascii->char 10)) 16 16 17 (define parser-error error) 17 (define (parser-error port msg . specialising-msg*) 18 (signal 19 (make-composite-condition 20 (make-property-condition 'input-parse) 21 (make-property-condition 'parse-error) 22 (make-property-condition 'exn 'message msg 'arguments specialising-msg*)))) 18 23 19 24 (include "myenv-chicken.scm") 20 25 (include "input-parse.scm") 21 26 22 ) 23 No newline at end of file 27 )