diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2022-04-18 19:44:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2022-04-18 19:47:37 -0700 |
commit | 9751250adb1333da55fcadb363266214d0782bb9 (patch) | |
tree | 465703e9cf4327e945c94d4c95058100916e373b /src/eval.c | |
parent | 75dfc1e8706d994bd7b18a24360847fd12bd5af0 (diff) | |
download | emacs-9751250adb1333da55fcadb363266214d0782bb9.tar.gz emacs-9751250adb1333da55fcadb363266214d0782bb9.tar.bz2 emacs-9751250adb1333da55fcadb363266214d0782bb9.zip |
Port struct Lisp_Subr to C99
* src/lisp.h (struct Lisp_Subr): Don’t use an anonymous union,
a feature missing from C99 and not supported by older OS X.
All uses changed.
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 6b1e12b8232..37bc03465cc 100644 --- a/src/eval.c +++ b/src/eval.c @@ -2055,7 +2055,7 @@ then strings and vectors are not accepted. */) /* Emacs primitives are interactive if their DEFUN specifies an interactive spec. */ if (SUBRP (fun)) - return XSUBR (fun)->intspec ? Qt : if_prop; + return XSUBR (fun)->intspec.string ? Qt : if_prop; /* Bytecode objects are interactive if they are long enough to have an element whose index is COMPILED_INTERACTIVE, which is |