Skip to content
This repository was archived by the owner on May 16, 2022. It is now read-only.

Commit ff20931

Browse files
committed
fmt
1 parent 5ba41bc commit ff20931

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

read.lisp

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -241,18 +241,11 @@
241241
(err "unexpected end of file"))
242242

243243
; Left-Parenthesis
244-
((equal *tok* "(" )
245-
(lex)
246-
(prog1
247-
(loop
248-
until(equal *tok*")")
249-
collect(read*)
250-
)
251-
(lex)
252-
)
253-
)
254-
255-
;dot
244+
((equal *tok* "(")
245+
(lex)
246+
(prog1 (loop until (equal *tok* ")") collect (read*)) (lex)))
247+
248+
; Dot
256249
((equal *tok* ".")
257250
(prog1 (list +special+ *tok*) (lex)))
258251

0 commit comments

Comments
 (0)