Changeset 5188
- Timestamp:
- Sep 9, 2006, 3:21:37 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-reader.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-reader.lisp
r5145 r5188 81 81 (char name 0) 82 82 (if (and (= namelen 2) (eq (char name 0) #\^)) 83 (code-char (the fixnum (logxor (the fixnum (char-code (char-upcase (char name 1)))) #x40))) 83 (let* ((c1 (char-code (char-upcase (char name 1))))) 84 (if (and (>= c1 64) (< c1 96)) 85 (code-char (the fixnum (logxor (the fixnum (char-code (char-upcase (char name 1)))) #x40))))) 84 86 (let* ((n 0)) 85 87 (or … … 99 101 (setq n 0) 100 102 (return)))))) 101 (dotimes (i namelen (code-char (mod n char-code-limit))) 103 (dotimes (i namelen (if (< n char-code-limit) 104 (code-char n))) 102 105 (let* ((code (the fixnum (- (the fixnum (char-code (char name i))) 103 106 (char-code #\0)))))
Note:
See TracChangeset
for help on using the changeset viewer.
