Changeset 5203
- Timestamp:
- Sep 13, 2006, 5:07:17 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-unicode.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-unicode.lisp
r5193 r5203 24 24 25 25 (defun get-character-encoding (name) 26 (gethash name *character-encodings*)) 26 (or (gethash name *character-encodings*) 27 (error "Unknown character encoding: ~s." name))) 27 28 28 29 (defun (setf get-character-encoding) (new name) … … 79 80 ) 80 81 82 83 (defmethod print-object ((ce character-encoding) stream) 84 (print-unreadable-object (ce stream :type t :identity t) 85 (format stream "~a" (character-encoding-name ce)))) 81 86 82 87 ;;; N.B. (ccl:nfunction <name> (lambda (...) ...)) is just like
Note:
See TracChangeset
for help on using the changeset viewer.
