diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 8626f790af7..6cbd5ab0351 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1392,7 +1392,7 @@ Also, a symbol satisfies `commandp' if its function definition does so.") | |||
| 1392 | have an element whose index is COMPILED_INTERACTIVE, which is | 1392 | have an element whose index is COMPILED_INTERACTIVE, which is |
| 1393 | where the interactive spec is stored. */ | 1393 | where the interactive spec is stored. */ |
| 1394 | else if (COMPILEDP (fun)) | 1394 | else if (COMPILEDP (fun)) |
| 1395 | return (XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK > COMPILED_INTERACTIVE | 1395 | return ((XVECTOR (fun)->size & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE |
| 1396 | ? Qt : Qnil); | 1396 | ? Qt : Qnil); |
| 1397 | 1397 | ||
| 1398 | /* Strings and vectors are keyboard macros. */ | 1398 | /* Strings and vectors are keyboard macros. */ |