removed a hack, caused by bogus skip-char-set
This commit is contained in:
parent
9512af2d3f
commit
491894920d
|
@ -56,15 +56,8 @@
|
||||||
(lambda (fname)
|
(lambda (fname)
|
||||||
(call-with-input-file fname
|
(call-with-input-file fname
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(skip-char-set non-newline port) ; Skip the first
|
(skip-char-set non-newline port) ; Skip the first line
|
||||||
|
(read-char port) ;read the newline
|
||||||
; WARNING JMG HACK
|
|
||||||
|
|
||||||
; (read-char port) ; JMG this should kill the newline
|
|
||||||
; but since skip-char-set is corrupt
|
|
||||||
; (it eats the last char)
|
|
||||||
; I omit the read-char to hack around
|
|
||||||
|
|
||||||
(read-secondary-args port))))))
|
(read-secondary-args port))))))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue