diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-10-07 18:39:12 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-10-07 18:39:12 -0700 |
commit | 619e0f19b389388caa93b5f9b3966f79b0305a1b (patch) | |
tree | 547571e717b017f1caded17c6701bf3587b9a692 /src/bytecode.c | |
parent | 41ec903a1c8c01c516463795c1053770f47f8877 (diff) | |
download | emacs-619e0f19b389388caa93b5f9b3966f79b0305a1b.tar.gz |
* bytecode.c (exec_byte_code): Do not unnecessarily grow ptrdiff_t to EMACS_INT.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r-- | src/bytecode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 4a414b41712..ed85d54d789 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -503,14 +503,14 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, if (INTEGERP (args_template)) { - EMACS_INT at = XINT (args_template); + ptrdiff_t at = XINT (args_template); int rest = at & 128; int mandatory = at & 127; - EMACS_INT nonrest = at >> 8; + ptrdiff_t nonrest = at >> 8; eassert (mandatory <= nonrest); if (nargs <= nonrest) { - EMACS_INT i; + ptrdiff_t i; for (i = 0 ; i < nargs; i++, args++) PUSH (*args); if (nargs < mandatory) |