Skip to content

Commit

Permalink
In make.shen handle CRLF line-endings too
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Mar 1, 2022
1 parent fec0a39 commit ebcdfd1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions make.shen
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@

(define make.extract-license
[10 10 | Rest] Acc -> (make.bytes->string (reverse Acc) "")
[13 10 13 10 | Rest] Acc -> (make.bytes->string (reverse Acc) "")
[Byte | Rest] Acc -> (make.extract-license Rest [Byte | Acc]))

(define make.bytes->string
Expand Down

0 comments on commit ebcdfd1

Please sign in to comment.