Changeset 2626
- Timestamp:
- 02/26/08 11:57:32 (11 months ago)
- Files:
-
- trunk/bknr/datastore/src/data/encoding.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bknr/datastore/src/data/encoding.lisp
r2265 r2626 325 325 (s (make-array n))) 326 326 (excl::stream-read-sequence stream s) 327 #+nil (map 'string #'code-char s)328 #-nil (coerce s 'string)))327 #+nil (map 'string #'code-char s) 328 #-nil (coerce s 'string))) 329 329 330 330 (defun %decode-symbol (stream) 331 331 (let ((p (%decode-string stream)) 332 332 (n (%decode-string stream))) 333 (intern n (find-package p)))) 333 (intern n (or (find-package p) 334 (error "package ~A for symbol ~A not found" p n))))) 334 335 335 336 (defun %decode-list (stream)
