Skip to content

Commit e4bcefc

Browse files
committed
support nested #= ... =# for #6128, as noted by @carlobaldassi
1 parent 11ad1fa commit e4bcefc

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/julia-parser.scm

+11-5
Original file line numberDiff line numberDiff line change
@@ -357,20 +357,26 @@
357357

358358
; skip to end of comment, starting at #: either #...<eol> or #= .... =#.
359359
(define (skip-comment port)
360-
(define (skip-multiline-comment port)
360+
(define (skip-multiline-comment port count)
361361
(let ((c (read-char port)))
362362
(if (eof-object? c)
363363
(error "unterminated multi-line comment #= ... =#")
364364
(begin (if (eqv? c #\=)
365365
(let ((c (peek-char port)))
366366
(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)))))))
370376

371377
(read-char port) ; read # that was already peeked
372378
(if (eqv? (peek-char port) #\=)
373-
(skip-multiline-comment port)
379+
(skip-multiline-comment port 1)
374380
(skip-to-eol port)))
375381

376382
(define (skip-ws-and-comments port)

0 commit comments

Comments
 (0)