diff options
| author | Paul Eggert | 2011-02-06 21:06:59 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-06 21:06:59 -0800 |
| commit | 0ca76b1eacbc5df387325d8711d3add68486909a (patch) | |
| tree | 891f3444a2e2b45ee7f7a7397d70d30af44cb82c /src/callproc.c | |
| parent | 400a67ffac91b4bbbfa58b32ec847c277ce53b24 (diff) | |
| download | emacs-0ca76b1eacbc5df387325d8711d3add68486909a.tar.gz emacs-0ca76b1eacbc5df387325d8711d3add68486909a.zip | |
* callproc.c: conform to C89 pointer rules
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) |