From 37df166229286a5aafb05bbf3a8860e52fb99c5f Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Thu, 13 May 2010 04:24:55 +0200 Subject: [PATCH] CHARCODE: Defined unicode functions for ABCL. --- charcode.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charcode.lisp b/charcode.lisp index 486e679..a3cb5ad 100644 --- 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)) -- 2.11.0