Changeset 5175


Ignore:
Timestamp:
Sep 8, 2006, 5:48:53 PM (18 years ago)
Author:
Gary Byers
Message:

%CODE-CHAR asserts that code is (UNSIGNED-BYTE 8), which is still useful (and
exactly what it used to do.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/macros.lisp

    r5136 r5175  
    12441244
    12451245(defmacro %char-code (c) `(char-code (the character ,c)))
    1246 (defmacro %code-char (i) `(code-char (the (mod ,char-code-limit) ,i)))
     1246(defmacro %code-char (i) `(code-char (the (mod 256) ,i)))
    12471247
    12481248(defmacro %izerop (x) `(eq ,x 0))
Note: See TracChangeset for help on using the changeset viewer.