diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/callproc.c | 4 |
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 | ||
| 27 | 2011-02-06 Paul Eggert <eggert@cs.ucla.edu> | 28 | 2011-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) |