Skip to content

Commit

Permalink
Fix Ideographic_space missing in CCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt authored and kilianmh committed Jul 8, 2024
1 parent fc79d7d commit 1bcf26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion str.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
(defvar *whitespaces* (list #\Backspace #\Tab #\Linefeed #\Newline #\Vt #\Page
#\Return #\Space #\Rubout
#+sbcl #\Next-Line #-sbcl (code-char 133)
#+(or abcl gcl lispworks) (code-char 12288) #-(or abcl gcl lispworks) #\Ideographic_space
#+(or abcl gcl lispworks ccl) (code-char 12288) #-(or abcl gcl lispworks ccl) #\Ideographic_space
#+lispworks #\no-break-space #-lispworks #\No-break_space)
"On some implementations, linefeed and newline represent the same character (code).")

Expand Down

0 comments on commit 1bcf26d

Please sign in to comment.