emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103171: Merge: * callproc.c: conform


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103171: Merge: * callproc.c: conform to C89 pointer rules
Date: Sun, 06 Feb 2011 21:07:22 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103171 [merge]
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2011-02-06 21:07:22 -0800
message:
  Merge: * callproc.c: conform to C89 pointer rules
modified:
  src/ChangeLog
  src/callproc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-02-07 05:02:02 +0000
+++ b/src/ChangeLog     2011-02-07 05:06:59 +0000
@@ -23,6 +23,7 @@
        * lread.c (read1, hash_string): Likewise.
        * process.c (read_process_output, send_process, Fprocess_send_region):
        Likewise.
+       * callproc.c (Fcall_process): Likewise.
 
 2011-02-06  Paul Eggert  <address@hidden>
 

=== modified file 'src/callproc.c'
--- a/src/callproc.c    2011-01-30 22:17:44 +0000
+++ b/src/callproc.c    2011-02-07 05:06:59 +0000
@@ -696,8 +696,8 @@
                   faithfully reflect inserted text until we
                   TEMP_SET_PT_BOTH below.  */
                specbind (Qinhibit_modification_hooks, Qt);
-               decode_coding_c_string (&process_coding, buf, nread,
-                                       curbuf);
+               decode_coding_c_string (&process_coding, (unsigned char *) buf,
+                                       nread, curbuf);
                unbind_to (count1, Qnil);
                if (display_on_the_fly
                    && CODING_REQUIRE_DETECTION (&saved_coding)


reply via email to

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