1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-19 04:10:18 -08:00

Basically working keyword arguments, though vmparam is unsatisfactory.

Copied from Perforce
 Change: 181545
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2013-05-03 17:20:35 +01:00
parent ac2e186e65
commit c0a8608bf7
11 changed files with 83 additions and 44 deletions

View file

@ -698,6 +698,16 @@ typedef struct AllocPatternStruct {
} AllocPatternStruct;
/* KeyStruct -- keyword argument structure */
#define KeySig ((Sig)0x519CE333) /* SIGnature KEYyy */
typedef struct mps_key_s {
Sig sig;
const char *name;
Bool (*check)(Arg arg);
} KeyStruct;
#endif /* mpmst_h */