Mercurial > emacs
diff src/eval.c @ 10345:9952a5ab70d1
Fix typo in last change.
| author | Roland McGrath <roland@gnu.org> |
|---|---|
| date | Thu, 05 Jan 1995 07:45:50 +0000 |
| parents | 01d13c22797e |
| children | c954d143db84 |
line wrap: on
line diff
--- a/src/eval.c Thu Jan 05 07:11:54 1995 +0000 +++ b/src/eval.c Thu Jan 05 07:45:50 1995 +0000 @@ -1392,7 +1392,7 @@ have an element whose index is COMPILED_INTERACTIVE, which is where the interactive spec is stored. */ else if (COMPILEDP (fun)) - return (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK > COMPILED_INTERACTIVE + return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE ? Qt : Qnil); /* Strings and vectors are keyboard macros. */
