Changes between Initial Version and Version 1 of Ticket #408
- Timestamp:
- 04/04/16 06:11:37 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #408 – Description
initial v1 1 1 Stas reports in <http://article.gmane.org/gmane.lisp.armedbear.devel/3588>: 2 This does not seem to emit a newline: 3 {{{ 4 (let ((stream (make-synonym-stream '*standard-output*))) 5 (write-string "abc" stream) 6 (fresh-line stream) 7 (write-string "abc" stream)) 8 }}} 2 9 10 This does not seem to return the correct character position: 3 11 {{{ 4 12 (let ((stream (make-synonym-stream '*standard-output*))) 5 13 (write-char #\c stream) 6 14 (system::stream-charpos stream)) 7 }}} }8 Returns15 }}} 16 as it returns 9 17 {{{ 10 18 => 0