comparison src/coding.c @ 89575:59d10ebd2a0b

(produce_chars): Revert last change.
author Andreas Schwab <schwab@suse.de>
date Mon, 06 Oct 2003 22:30:26 +0000
parents 242f2cc0134b
children e97441b6244b
comparison
equal deleted inserted replaced
89574:3c4fef237ab7 89575:59d10ebd2a0b
5468 int produced_chars = 0; 5468 int produced_chars = 0;
5469 5469
5470 if (! coding->chars_at_source) 5470 if (! coding->chars_at_source)
5471 { 5471 {
5472 /* Characters are in coding->charbuf. */ 5472 /* Characters are in coding->charbuf. */
5473 EMACS_INT *buf = coding->charbuf; 5473 int *buf = coding->charbuf;
5474 EMACS_INT *buf_end = buf + coding->charbuf_used; 5474 int *buf_end = buf + coding->charbuf_used;
5475 unsigned char *adjusted_dst_end; 5475 unsigned char *adjusted_dst_end;
5476 5476
5477 if (BUFFERP (coding->src_object) 5477 if (BUFFERP (coding->src_object)
5478 && EQ (coding->src_object, coding->dst_object)) 5478 && EQ (coding->src_object, coding->dst_object))
5479 dst_end = ((unsigned char *) coding->source) + coding->consumed; 5479 dst_end = ((unsigned char *) coding->source) + coding->consumed;