Changeset 5404


Ignore:
Timestamp:
Oct 23, 2006, 4:24:14 AM (18 years ago)
Author:
Gary Byers
Message:

MAKE-STRING-OUTPUT-STREAM: skip some keyword/subtype checking if element-type not
provided. (Could also skip it if it's explicit and obviously OK.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/compiler/optimizers.lisp

    r5263 r5404  
    16011601    call))
    16021602
     1603(define-compiler-macro make-string-output-stream (&whole whole &rest keys)
     1604  (if (null keys)
     1605    '(make-simple-string-output-stream)
     1606    whole))
     1607
     1608
    16031609(define-compiler-macro sbit (&environment env &whole call v &optional sub0 &rest others)
    16041610  (if (and sub0 (null others))
Note: See TracChangeset for help on using the changeset viewer.