File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1138
1138
it isn't an attractive hazzard.
1139
1139
configure, makefiles/Mf-install.in
1140
1140
- add #\null and #\escape as aliases for #\nul and #\esc (R7RS compatibility)
1141
+ - allow \| escape inside strings (R7RS compatibility)
Original file line number Diff line number Diff line change 1574
1574
(eqv? (string-ref "\\ \"\' " 0) #\\ )
1575
1575
(eqv? (string-ref "\\ \"\' " 1) #\")
1576
1576
(eqv? (string-ref "\\ \"\' " 2) #\' )
1577
+ (eqv? (string-ref "\|\v" 0) #\|)
1577
1578
(= (char->integer (string-ref "a\012" 1)) #o12 10)
1578
1579
(= (char->integer (string-ref "a\015" 1)) #o15 13)
1579
1580
(= (char->integer (string-ref "a\177" 1)) #o177 127)
Original file line number Diff line number Diff line change 778
778
(with-read-char c
779
779
(state-case c
780
780
[eof (with-unread-char c (xcall rd-eof-error " string" ))]
781
- [(#\\ #\" )
781
+ [(#\\ #\" # \| )
782
782
(with-stretch-buffer i c
783
783
(*state rd-token-string (fx+ i 1)))]
784
784
[(#\n #\a #\b #\f #\r #\t #\v )
You can’t perform that action at this time.
0 commit comments