- Timestamp:
- May 20, 2007, 9:07:29 AM (18 years ago)
- File:
-
- 1 edited
-
branches/ide-1.0/ccl/hemlock/src/hemlock-ext.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/ide-1.0/ccl/hemlock/src/hemlock-ext.lisp
r6 r6583 635 635 ((= index end) nil) 636 636 (declare (fixnum index)) 637 (if (/= (logand (aref table ( char-code (elt string index))) mask) 0)637 (if (/= (logand (aref table (min 255 (char-code (schar string index)))) mask) 0) 638 638 (return index)))) 639 639 … … 647 647 ((< index start) nil) 648 648 (declare (fixnum index)) 649 (if (/= (logand (aref table ( char-code (elt string index))) mask) 0)649 (if (/= (logand (aref table (min 255 (char-code (aref string index)))) mask) 0) 650 650 (return index)))) 651 651
Note:
See TracChangeset
for help on using the changeset viewer.
