Procházet zdrojové kódy

Support ACL 9.0; patch by Gabor Melis

dlichteblau před 14 roky
rodič
revize
024b0f9d9a
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1 1
      mixin.lisp
  2. 1 1
      package.lisp

+ 1 - 1
mixin.lisp

@@ -59,7 +59,7 @@
       ((s trivial-gray-stream-mixin) seq &optional start end)
     (stream-read-sequence s seq (or start 0) (or end (length seq))))
 
-  (defmethod stream:stream-write-sequence
+  (defmethod excl:stream-write-sequence
       ((s trivial-gray-stream-mixin) seq &optional start end)
     (stream-write-sequence s seq (or start 0) (or end (length seq))))
 

+ 1 - 1
package.lisp

@@ -12,7 +12,7 @@
 
 #+allegro
 (eval-when (:compile-toplevel :load-toplevel :execute)
-  (unless (fboundp 'stream:stream-write-string)
+  (unless (fboundp 'excl:stream-write-string)
     (require "streamc.fasl")))
 
 #+ecl