And then load it from sbcl, and it give error:
...
; Use *BREAK-ON-SIGNALS* to intercept.
;
; error in FORMAT: Unknown directive (character: Return)
...
; ~1%~:*~]~]~}~0%
; ^
;
; compilation unit finished
; caught 1 ERROR condition
But if I paste the code to sbcl, it works.
I don't know what's the difference of both operations.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sbcl...@lists.sourceforge.net
On 25.08.2020 15:43, Jinsong Zhao wrote:
> error in FORMAT: Unknown directive (character: Return)
This is likely an error in how SBCL treats file endings on Windows.
Are you able to format the file to use Unix file endings and try loading
it again in SBCL?
Jinsong Zhao
unread,
Aug 25, 2020, 7:18:27 PM8/25/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sbcl...@lists.sourceforge.net
On 2020/8/25 21:53, Michał "phoe" Herda wrote: > On 25.08.2020 15:43, Jinsong Zhao wrote: >> error in FORMAT: Unknown directive (character: Return) > > This is likely an error in how SBCL treats file endings on Windows. > > Are you able to format the file to use Unix file endings and try loading > it again in SBCL? >
Thank you very much. After converting the line break in Windows file to Unix file. It works.