aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-02-06 21:06:59 -0800
committerPaul Eggert2011-02-06 21:06:59 -0800
commit0ca76b1eacbc5df387325d8711d3add68486909a (patch)
tree891f3444a2e2b45ee7f7a7397d70d30af44cb82c /src
parent400a67ffac91b4bbbfa58b32ec847c277ce53b24 (diff)
downloademacs-0ca76b1eacbc5df387325d8711d3add68486909a.tar.gz
emacs-0ca76b1eacbc5df387325d8711d3add68486909a.zip
* callproc.c: conform to C89 pointer rules
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/callproc.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c061fc53b94..eeaa5a24ae6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -23,6 +23,7 @@
23 * lread.c (read1, hash_string): Likewise. 23 * lread.c (read1, hash_string): Likewise.
24 * process.c (read_process_output, send_process, Fprocess_send_region): 24 * process.c (read_process_output, send_process, Fprocess_send_region):
25 Likewise. 25 Likewise.
26 * callproc.c (Fcall_process): Likewise.
26 27
272011-02-06 Paul Eggert <eggert@cs.ucla.edu> 282011-02-06 Paul Eggert <eggert@cs.ucla.edu>
28 29
diff --git a/src/callproc.c b/src/callproc.c
index 09d0ca5b42c..925eefb4b02 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -696,8 +696,8 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
696 faithfully reflect inserted text until we 696 faithfully reflect inserted text until we
697 TEMP_SET_PT_BOTH below. */ 697 TEMP_SET_PT_BOTH below. */
698 specbind (Qinhibit_modification_hooks, Qt); 698 specbind (Qinhibit_modification_hooks, Qt);
699 decode_coding_c_string (&process_coding, buf, nread, 699 decode_coding_c_string (&process_coding, (unsigned char *) buf,
700 curbuf); 700 nread, curbuf);
701 unbind_to (count1, Qnil); 701 unbind_to (count1, Qnil);
702 if (display_on_the_fly 702 if (display_on_the_fly
703 && CODING_REQUIRE_DETECTION (&saved_coding) 703 && CODING_REQUIRE_DETECTION (&saved_coding)