mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-17 19:30:38 -08:00
Merge from emacs-23; up to 2010-06-29T18:17:31Z!cyd@stupidchicken.com.
This commit is contained in:
commit
f998bbe793
2 changed files with 7 additions and 3 deletions
|
|
@ -6849,7 +6849,7 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table,
|
|||
dst_end = coding->destination + coding->dst_bytes;
|
||||
coding_set_source (coding);
|
||||
src = coding->source + offset;
|
||||
src_end = coding->source + coding->src_bytes;
|
||||
src_end = coding->source + coding->consumed;
|
||||
if (EQ (coding->src_object, coding->dst_object))
|
||||
dst_end = (unsigned char *) src;
|
||||
}
|
||||
|
|
@ -6883,7 +6883,7 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table,
|
|||
dst_end = coding->destination + coding->dst_bytes;
|
||||
coding_set_source (coding);
|
||||
src = coding->source + offset;
|
||||
src_end = coding->source + coding->src_bytes;
|
||||
src_end = coding->source + coding->consumed;
|
||||
if (EQ (coding->src_object, coding->dst_object))
|
||||
dst_end = (unsigned char *) src;
|
||||
}
|
||||
|
|
@ -6904,7 +6904,7 @@ produce_chars (struct coding_system *coding, Lisp_Object translation_table,
|
|||
dst = alloc_destination (coding, require, dst);
|
||||
coding_set_source (coding);
|
||||
src = coding->source + offset;
|
||||
src_end = coding->source + coding->src_bytes;
|
||||
src_end = coding->source + coding->consumed;
|
||||
}
|
||||
}
|
||||
produced_chars = coding->consumed_char;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue