Dolda2000 GitWeb
/
lisp-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5018ca
)
CHARCODE: Defined unicode functions for ABCL.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Thu, 13 May 2010 02:24:55 +0000
(
04:24
+0200)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Thu, 13 May 2010 02:24:55 +0000
(
04:24
+0200)
charcode.lisp
patch
|
blob
|
blame
|
history
diff --git
a/charcode.lisp
b/charcode.lisp
index
486e679
..
a3cb5ad
100644
(file)
--- a/
charcode.lisp
+++ b/
charcode.lisp
@@
-197,12
+197,12
@@
;;; Implementation-specific functions
-#+(or (and clisp unicode) sbcl)
+#+(or (and clisp unicode) sbcl
abcl
)
(defun unicode->char (unicode)
(declare (type (unsigned-byte 24) unicode))
(code-char unicode))
-#+(or (and clisp unicode) sbcl)
+#+(or (and clisp unicode) sbcl
abcl
)
(defun char->unicode (char)
(declare (type character char))
(char-code char))