Skip to content

Commit

Permalink
Fix scm. special form
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Mar 6, 2022
1 parent 66d19d0 commit 8bb3e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.scm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(lambda (fname)
(and (symbol? fname)
(let ((fname (symbol->string fname)))
(and (> (string-length fname) 4)
(and (>= (string-length fname) 4)
(char=? #\. (string-ref fname 3))
(char=? #\s (string-ref fname 0))
(char=? #\c (string-ref fname 1))
Expand Down

0 comments on commit 8bb3e7e

Please sign in to comment.