0.9.10.6: fix non-unicode build
authorNikodemus Siivola <nikodemus@random-state.net>
Tue, 28 Feb 2006 04:58:55 +0000 (04:58 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Tue, 28 Feb 2006 04:58:55 +0000 (04:58 +0000)
 ...I was _sure_ I'd tested this...

src/code/target-char.lisp

index 92d529b..3b7eea7 100644 (file)
                           for char-name = (string-upcase (read stream nil nil))
                           while code-point
                           do (setf (gethash code-point names) char-name))
-                       (let ((tree (make-huffman-tree
-                                    (let (list)
+                       (let ((tree
+                             #!+sb-unicode
+                              (make-huffman-tree
+                               (let (list)
                                       (maphash (lambda (code name)
                                                  (declare (ignore code))
                                                  (push name list))