diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-07 10:55:38 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-07 10:55:38 -0700 |
commit | 3300e6fd43c4059de955cddc37ec4212dab2b085 (patch) | |
tree | 926457ff631bb5237ab48440eaccd1262eb73fd7 /src/callint.c | |
parent | fd05c7e9aae3cc636a7e13487dc50010084adae8 (diff) | |
download | emacs-3300e6fd43c4059de955cddc37ec4212dab2b085.tar.gz |
* keyboard.h (num_input_events): Now uintmax_t.
This is (very slightly) less likely to mess up due to wraparound.
All uses changed.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 1371b403e4b..d17f850eb53 100644 --- a/src/callint.c +++ b/src/callint.c @@ -339,7 +339,7 @@ invoke it. If KEYS is omitted or nil, the return value of { Lisp_Object input; Lisp_Object funval = Findirect_function (function, Qt); - size_t events = num_input_events; + uintmax_t events = num_input_events; input = specs; /* Compute the arg values using the user's expression. */ GCPRO2 (input, filter_specs); |