File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 357
357
358
358
; skip to end of comment, starting at #: either #...<eol> or #= .... =#.
359
359
(define (skip-comment port )
360
- (define (skip-multiline-comment port )
360
+ (define (skip-multiline-comment port count )
361
361
(let ((c (read-char port)))
362
362
(if (eof-object? c)
363
363
(error " unterminated multi-line comment #= ... =#" )
364
364
(begin (if (eqv? c #\= )
365
365
(let ((c (peek-char port)))
366
366
(if (eqv? c #\# )
367
- (read-char port)
368
- (skip-multiline-comment port)))
369
- (skip-multiline-comment port))))))
367
+ (begin
368
+ (read-char port)
369
+ (if (> count 1 )
370
+ (skip-multiline-comment port (- count 1 ))))
371
+ (skip-multiline-comment port count)))
372
+ (if (eqv? c #\# )
373
+ (skip-multiline-comment port
374
+ (if (eqv? (peek-char port) #\= ) (+ count 1 ) count))
375
+ (skip-multiline-comment port count)))))))
370
376
371
377
(read-char port) ; read # that was already peeked
372
378
(if (eqv? (peek-char port) #\= )
373
- (skip-multiline-comment port)
379
+ (skip-multiline-comment port 1 )
374
380
(skip-to-eol port)))
375
381
376
382
(define (skip-ws-and-comments port )
You can’t perform that action at this time.
0 commit comments