comparison src/lstream.c @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 4b173ad71786
comparison
equal deleted inserted replaced
1:c0c6a60d29db 2:ac2d302a0011
1525 } 1525 }
1526 1526
1527 Lisp_Object 1527 Lisp_Object
1528 make_lisp_buffer_output_stream (struct buffer *buf, Bufpos pos, int flags) 1528 make_lisp_buffer_output_stream (struct buffer *buf, Bufpos pos, int flags)
1529 { 1529 {
1530 Lisp_Object lstr = make_lisp_buffer_stream_1 (buf, pos, 0, flags, "w"); 1530 Lisp_Object lstr = make_lisp_buffer_stream_1 (buf, pos, 0, flags, "wc");
1531 1531
1532 Lstream_set_character_mode (XLSTREAM (lstr)); 1532 Lstream_set_character_mode (XLSTREAM (lstr));
1533 return lstr; 1533 return lstr;
1534 } 1534 }
1535 1535