Commit b2b4ef07 authored by Robert Goldman's avatar Robert Goldman
Browse files

Merge branch 'ccl-enable-unicode' into 'master'

Detect Unicode support on Clozure CL



See merge request !5
parents 37fcb4ba 1e37b73b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -29,10 +29,11 @@

;;;; Early meta-level tweaks

#+(or allegro clasp clisp cmucl ecl mkcl mkcl sbcl)
#+(or allegro clasp clisp clozure cmucl ecl mkcl sbcl)
(eval-when (:load-toplevel :compile-toplevel :execute)
  (when (and #+allegro (member :ics *features*)
             #+(or clasp clisp cmucl ecl mkcl) (member :unicode *features*)
             #+clozure (member :openmcl-unicode-strings *features*)
             #+sbcl (member :sb-unicode *features*))
    ;; Check for unicode at runtime, so that a hypothetical FASL compiled with unicode
    ;; but loaded in a non-unicode setting (e.g. on Allegro) won't tell a lie.