]> code.delx.au - gnu-emacs/commitdiff
*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Wed, 29 Sep 2004 23:51:34 +0000 (23:51 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 29 Sep 2004 23:51:34 +0000 (23:51 +0000)
src/ChangeLog
src/callproc.c

index 4cb7ad9d501c34496ad25f78be1d9cce8b5f76af..73fb09883eba2b650f8cb62035f162f4db7607c8 100644 (file)
@@ -1,13 +1,16 @@
 2004-09-30  Kenichi Handa  <handa@m17n.org>
 
-       * process.c (send_process): Be sure to free composition data.
+       * process.c (send_process): Free composition data.
 
-       * fileio.c (Finsert_file_contents): Be sure to free composition
-       data.
+       * fileio.c (Finsert_file_contents): Free composition data.
 
        * coding.c (code_convert_region): Don't skip ASCIIs if there are
-       compositions to encode.  Be sure to free composition data.
-       (encode_coding_string): Likewise.
+       compositions to encode.
+       (encode_coding_string): Likewise.  Free composition data.
+
+2004-09-30  Florian Weimer <fw@deneb.enyo.de>  (tiny change)
+
+       * coding.c (code_convert_region): Free composition data.
 
 2004-09-29  Kim F. Storm  <storm@cua.dk>
 
index c3345eb37073738ef85adb49466d790165bffb74..effd7ecbb14db8fec548a3519429d3fccaf18bfc 100644 (file)
@@ -807,6 +807,8 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
                  {
                    detect_coding (&process_coding, bufptr, nread);
                    if (process_coding.composing != COMPOSITION_DISABLED)
+                     /* We have not yet allocated the composition
+                        data because the coding type was undecided.  */
                      coding_allocate_composition_data (&process_coding, PT);
                  }
                if (process_coding.cmp_data)