Commit 4570941e96e3501ec10af622808f0a02e7eea7e1

Thomas de Grivel 2018-05-16T08:22:18

fix stream-flush-output

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/babel-output-stream.lisp b/babel-output-stream.lisp
index 15bf34a..bd64ec1 100644
--- a/babel-output-stream.lisp
+++ b/babel-output-stream.lisp
@@ -28,7 +28,7 @@
   (stream-finish-output (stream-underlying-stream stream)))
 
 (defmethod stream-flush-output ((stream babel-output-stream))
-  (stream-flush-output-buffer (stream-underlying-stream stream)))
+  (stream-flush-output (stream-underlying-stream stream)))
 
 (defmethod stream-write ((stream babel-output-stream) (element fixnum))
   (assert (typep element '(unsigned-byte 8)))