Mercurial > emacs
changeset 10343:daaf64864c1c
(Fcall_interactively): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of
compiled byte-code object.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 05 Jan 1995 07:06:19 +0000 |
parents | 01d13c22797e |
children | a6e8525a1a9d |
files | src/callint.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callint.c Thu Jan 05 07:05:16 1995 +0000 +++ b/src/callint.c Thu Jan 05 07:06:19 1995 +0000 @@ -1,5 +1,5 @@ /* Call a Lisp function interactively. - Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -229,7 +229,7 @@ } else if (COMPILEDP (fun)) { - if (XVECTOR (fun)->size <= COMPILED_INTERACTIVE) + if (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK <= COMPILED_INTERACTIVE) goto lose; specs = XVECTOR (fun)->contents[COMPILED_INTERACTIVE]; }