mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
Fix int/EMACS_INT use in callproc.c.
callproc.c (Fcall_process): Use EMACS_INT for count of characters read from the subprocess.
This commit is contained in:
parent
61bfec9843
commit
69481da786
2 changed files with 5 additions and 2 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2010-09-24 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* callproc.c (Fcall_process): Use EMACS_INT for count of
|
||||
characters read from the subprocess.
|
||||
|
||||
* bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
|
||||
positions.
|
||||
(bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
|
||||
|
|
|
|||
|
|
@ -678,9 +678,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
|
|||
QUIT;
|
||||
|
||||
{
|
||||
register int nread;
|
||||
register EMACS_INT nread;
|
||||
int first = 1;
|
||||
int total_read = 0;
|
||||
EMACS_INT total_read = 0;
|
||||
int carryover = 0;
|
||||
int display_on_the_fly = display_p;
|
||||
struct coding_system saved_coding;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue