Changeset 15328
- Timestamp:
- Apr 16, 2012, 10:34:17 AM (13 years ago)
- Location:
- trunk/source
- Files:
-
- 2 edited
-
level-1/l1-unicode.lisp (modified) (2 diffs)
-
lib/ccl-export-syms.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/level-1/l1-unicode.lisp
r15298 r15328 4697 4697 ) 4698 4698 4699 (defun list-character-encodings (&key include-aliases) 4700 "Return a list of the names of supported character encodings." 4701 (let ((names nil)) 4702 (maphash #'(lambda (name enc) 4703 (if (eq name (character-encoding-name enc)) 4704 (push name names) 4705 (when include-aliases 4706 (push name names)))) 4707 *character-encodings*) 4708 names)) 4709 4699 4710 (defun describe-character-encoding (name) 4700 4711 (let* ((enc (lookup-character-encoding name))) … … 4712 4723 4713 4724 (defun describe-character-encodings () 4714 (let* ((names nil)) 4715 (maphash #'(lambda (name enc) 4716 (when (eq name (character-encoding-name enc)) 4717 (push name names))) 4718 *character-encodings*) 4725 (let* ((names (list-character-encodings))) 4719 4726 (dolist (name (sort names #'string<) (values)) 4720 4727 (describe-character-encoding name)))) -
trunk/source/lib/ccl-export-syms.lisp
r15313 r15328 710 710 character-encoding 711 711 define-character-encoding 712 list-character-encodings 712 713 describe-character-encoding 713 714 describe-character-encodings
Note:
See TracChangeset
for help on using the changeset viewer.
