annotate 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 |
rev |
line source |
428
|
1 /* The modifiers XEmacs knows about; these appear in key and button events. */
|
|
2
|
442
|
3 #define XEMACS_MOD_CONTROL (1<<0)
|
|
4 #define XEMACS_MOD_META (1<<1)
|
|
5 #define XEMACS_MOD_SUPER (1<<2)
|
|
6 #define XEMACS_MOD_HYPER (1<<3)
|
|
7 #define XEMACS_MOD_ALT (1<<4)
|
|
8 #define XEMACS_MOD_SHIFT (1<<5) /* not used for dual-case characters */
|
|
9 #define XEMACS_MOD_BUTTON1 (1<<6)
|
|
10 #define XEMACS_MOD_BUTTON2 (1<<7)
|
|
11 #define XEMACS_MOD_BUTTON3 (1<<8)
|
|
12 #define XEMACS_MOD_BUTTON4 (1<<9)
|
|
13 #define XEMACS_MOD_BUTTON5 (1<<10)
|