Changeset 6577 for branches


Ignore:
Timestamp:
May 20, 2007, 9:03:35 AM (18 years ago)
Author:
Gary Byers
Message:

SYNTAX-CHAR-CODE: pin char-code to 255.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ide-1.0/ccl/hemlock/src/charmacs.lisp

    r6 r6577  
    3535  table functions may have.")
    3636
     37
     38;;; This has the effect of treating all characters with code > 255
     39;;; as if they were #\u+00ff.  Not quite right, but better than
     40;;; flying off the end.
    3741(defmacro syntax-char-code (char)
    38   `(char-code ,char))
     42  `(min (char-code ,char) 255))
    3943
    4044
Note: See TracChangeset for help on using the changeset viewer.