# HG changeset patch # User Roland McGrath # Date 789289579 0 # Node ID daaf64864c1c6368afe817c947946d32ed112748 # Parent 01d13c22797ee54105d3c77f87301e89f735b2ed (Fcall_interactively): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of compiled byte-code object. diff -r 01d13c22797e -r daaf64864c1c src/callint.c --- 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]; }