diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-21 21:48:13 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-21 21:48:13 -0700 |
commit | e4d81efc58695c19154d5f6733d91172b4c3e5b7 (patch) | |
tree | a3e090515c7a6c7afb302b0bcc03c241da2a9585 /src/process.h | |
parent | a8b7caa345d8215468f558c771b703a3b89e2d77 (diff) | |
download | emacs-e4d81efc58695c19154d5f6733d91172b4c3e5b7.tar.gz |
* process.h (struct Lisp_Process): Members tick and update_tick
are now of type EMACS_INT, not int.
* process.c (process_tick, update_tick): Use EMACS_INT, not int.
Diffstat (limited to 'src/process.h')
-rw-r--r-- | src/process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h index 3eb94cb196b..edb937893b0 100644 --- a/src/process.h +++ b/src/process.h @@ -95,9 +95,9 @@ struct Lisp_Process /* Descriptor by which we write to this process */ int outfd; /* Event-count of last event in which this process changed status. */ - int tick; + EMACS_INT tick; /* Event-count of last such event reported. */ - int update_tick; + EMACS_INT update_tick; /* Size of carryover in decoding. */ int decoding_carryover; /* Hysteresis to try to read process output in larger blocks. |