Changeset 5075


Ignore:
Timestamp:
Sep 2, 2006, 10:24:57 AM (18 years ago)
Author:
Gary Byers
Message:

Fix typo.

Location:
trunk/ccl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/x86-error-signal.lisp

    r5030 r5075  
    173173                         (cond ((= op2 x8664::tag-fixnum) 'fixnum)
    174174                               ((= op2 x8664::tag-single-float) 'single-float)
    175                                ((= op2 x8664::subtag-character 'character))
     175                               ((= op2 x8664::subtag-character) 'character)
    176176                               ((= op2 x8664::fulltag-cons) 'cons)
    177177                               ((= op2 x8664::tag-misc) 'uvector)
  • trunk/ccl/lib/db-io.lisp

    r5068 r5075  
    394394        (let* ((string (make-string 512)))
    395395          (dotimes (i 512)
    396             (setf (schar string i) (%get-unsigned-byte buf i)))
     396            (setf (%scharcode string i) (%get-unsigned-byte buf i)))
    397397          (with-input-from-string (s string)
    398398            (let* ((sig (ignore-errors (read s)))
Note: See TracChangeset for help on using the changeset viewer.