*** empty log message ***

original commit: 933142c30e2f00ef67df862c01b3f45fa2739e8d
tokens
Scott Owens 22 years ago
parent 83e6366c56
commit 069e08601a

@ -185,6 +185,7 @@
((not (input-port? ip))
(raise-type-error 'make-lex-buf "input-port" 0 ip))
(else
(port-count-lines! ip)
(make-lex-buffer ip 0 0 0 0))))
((ip offsets)
(cond
@ -196,6 +197,7 @@
(not (andmap (lambda (x) (>= x 0)) offsets)))
(raise-type-error 'make-lex-buf "list of 3 non-negative exact integers" 1 ip offsets))
(else
(port-count-lines! ip)
(make-lex-buffer ip 0 (car offsets) (cadr offsets) (caddr offsets)))))))
(define (next-char lb)

Loading…
Cancel
Save