emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/coding.c


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/src/coding.c
Date: Fri, 21 Dec 2001 03:09:52 -0500

Index: emacs/src/coding.c
diff -c emacs/src/coding.c:1.236 emacs/src/coding.c:1.237
*** emacs/src/coding.c:1.236    Mon Dec 17 10:21:06 2001
--- emacs/src/coding.c  Mon Dec 17 10:33:12 2001
***************
*** 5516,5522 ****
        if (encodep)
        result = encode_coding (coding, src, dst, len_byte, 0);
        else
!       result = decode_coding (coding, src, dst, len_byte, 0);
  
        /* The buffer memory is now:
         +--------+-------converted-text----+--+------original-text----+---+
--- 5516,5526 ----
        if (encodep)
        result = encode_coding (coding, src, dst, len_byte, 0);
        else
!       {
!         if (coding->composing != COMPOSITION_DISABLED)
!           coding->cmp_data->char_offset = from + inserted;
!         result = decode_coding (coding, src, dst, len_byte, 0);
!       }
  
        /* The buffer memory is now:
         +--------+-------converted-text----+--+------original-text----+---+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]