Skip to content

Commit 56cf0e2

Browse files
committed
Rename first to first-arg, to avoid collision with SRFI 1's first.
This is more of a mental collision than an actual code collision, of course, since we don't actually import or use SRFI 1 here. But Mike Gran makes a good point. :-)
1 parent 1dd17e8 commit 56cf0e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

echo.scm

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
(define (main args)
1010
(setlocale LC_ALL "")
1111
(let loop ((args (cdr args))
12-
(first #t))
12+
(first-arg #t))
1313
(cond ((null? args)
1414
(newline)
1515
(quit status))
1616
(else
17-
(unless first
17+
(unless first-arg
1818
(write-char #\space))
1919
(let ((arg (car args)))
2020
(call-with-input-string arg initial)

0 commit comments

Comments
 (0)