Changes between Initial Version and Version 1 of Ticket #408


Ignore:
Timestamp:
04/04/16 06:11:37 (7 years ago)
Author:
Mark Evenson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #408 – Description

    initial v1  
    11Stas reports in <http://article.gmane.org/gmane.lisp.armedbear.devel/3588>:
     2This 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}}}
    29
     10This does not seem to return the correct character position:
    311{{{
    412(let ((stream (make-synonym-stream '*standard-output*)))
    513  (write-char #\c stream)
    614  (system::stream-charpos stream))
    7 }}}}
    8 Returns
     15}}}
     16as it returns
    917{{{
    1018=> 0