aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorPaul Eggert2012-04-21 21:48:13 -0700
committerPaul Eggert2012-04-21 21:48:13 -0700
commite4d81efc58695c19154d5f6733d91172b4c3e5b7 (patch)
treea3e090515c7a6c7afb302b0bcc03c241da2a9585 /src/process.h
parenta8b7caa345d8215468f558c771b703a3b89e2d77 (diff)
downloademacs-e4d81efc58695c19154d5f6733d91172b4c3e5b7.tar.gz
emacs-e4d81efc58695c19154d5f6733d91172b4c3e5b7.zip
* 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.h4
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
95 /* Descriptor by which we write to this process */ 95 /* Descriptor by which we write to this process */
96 int outfd; 96 int outfd;
97 /* Event-count of last event in which this process changed status. */ 97 /* Event-count of last event in which this process changed status. */
98 int tick; 98 EMACS_INT tick;
99 /* Event-count of last such event reported. */ 99 /* Event-count of last such event reported. */
100 int update_tick; 100 EMACS_INT update_tick;
101 /* Size of carryover in decoding. */ 101 /* Size of carryover in decoding. */
102 int decoding_carryover; 102 int decoding_carryover;
103 /* Hysteresis to try to read process output in larger blocks. 103 /* Hysteresis to try to read process output in larger blocks.