mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-29 11:02:01 +00:00
(decode_coding_object): Fix last change.
This commit is contained in:
parent
30076589d3
commit
a1567c4544
@ -1,3 +1,7 @@
|
||||
2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* coding.c (decode_coding_object): Fix last change.
|
||||
|
||||
2008-03-27 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* w32fns.c (start_hourglass): Suppress hourglass on tty frames.
|
||||
|
@ -7030,10 +7030,10 @@ decode_coding_object (coding, src_object, from, from_byte, to, to_byte,
|
||||
|| (! NILP (CODING_ATTR_POST_READ (attrs))
|
||||
&& NILP (dst_object)))
|
||||
{
|
||||
coding->dst_object = code_conversion_save (1, 1);
|
||||
coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding);
|
||||
coding->dst_object = code_conversion_save (1, coding->dst_multibyte);
|
||||
coding->dst_pos = BEG;
|
||||
coding->dst_pos_byte = BEG_BYTE;
|
||||
coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding);
|
||||
}
|
||||
else if (BUFFERP (dst_object))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user