Mercurial > hg > xemacs-beta
diff src/lstream.h @ 185:3d6bfa290dbd r20-3b19
Import from CVS: tag r20-3b19
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:55:28 +0200 |
parents | 131b0175ea99 |
children | 262b8bb4a523 |
line wrap: on
line diff
--- a/src/lstream.h Mon Aug 13 09:54:24 2007 +0200 +++ b/src/lstream.h Mon Aug 13 09:55:28 2007 +0200 @@ -126,7 +126,7 @@ /* Mark this object for garbage collection. Same semantics as a standard Lisp_Object marker. This function can be NULL. */ Lisp_Object (*marker) (Lisp_Object lstream, void (*markfun) (Lisp_Object)); -} Lstream_implementation; +} Lstream_implementation; #define DEFINE_LSTREAM_IMPLEMENTATION(name,c_name,size) \ Lstream_implementation c_name[1] = \ @@ -211,7 +211,7 @@ /* Call the function equivalent if the out buffer is full. Otherwise, add to the end of the out buffer and, if line buffering is called for and the character marks the end of a line, write out the buffer. */ - + #define Lstream_putc(stream, c) \ ((stream)->out_buffer_ind >= (stream)->out_buffer_size ? \ Lstream_fputc (stream, c) : \