Mercurial > hg > xemacs-beta
view src/events-mod.h @ 494:4137b1fb7b90
[xemacs-hg @ 2001-05-01 07:23:47 by ben]
* xemacs.mak (DEPEND):
Don't add config.inc to the horked depend file. It's not
recognized by nmake and just results in warnings.
* xemacs.mak (docfile):
Don't use $(DEL) in the middle of a shell command, because it
will try to call `-del' and fail.
author | ben |
---|---|
date | Tue, 01 May 2001 07:23:47 +0000 |
parents | abe6d1db359e |
children | 7039e6323819 |
line wrap: on
line source
/* The modifiers XEmacs knows about; these appear in key and button events. */ #define XEMACS_MOD_CONTROL (1<<0) #define XEMACS_MOD_META (1<<1) #define XEMACS_MOD_SUPER (1<<2) #define XEMACS_MOD_HYPER (1<<3) #define XEMACS_MOD_ALT (1<<4) #define XEMACS_MOD_SHIFT (1<<5) /* not used for dual-case characters */ #define XEMACS_MOD_BUTTON1 (1<<6) #define XEMACS_MOD_BUTTON2 (1<<7) #define XEMACS_MOD_BUTTON3 (1<<8) #define XEMACS_MOD_BUTTON4 (1<<9) #define XEMACS_MOD_BUTTON5 (1<<10)