guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bug in simple-format (print.c)


From: Daniel Skarda
Subject: Bug in simple-format (print.c)
Date: 07 Jun 2002 16:14:58 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7

Hello,

 I think there is missing line in simple-format (print.c):

           case '%':
            scm_newline (destination);
            start = p + 1;
            continue;

 Before scm_newline, there should be:

   scm_lfwrite (start, p - start - 1, destination);

 otherwise (format #t "Hello world~%") print just newline.

0.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]