1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Move global window pointers to window and global keyboard variables to input.

This commit is contained in:
2013-10-08 17:41:49 +08:00
parent 83a0cc9d67
commit d6e3df6ff3
8 changed files with 20 additions and 22 deletions

View File

@@ -3,6 +3,12 @@
#include "edef.h"
typedef enum {
STOP, PLAY, RECORD
} kbdstate ;
extern kbdstate kbdmode ; /* current keyboard macro mode */
extern int lastkey ; /* last keystoke */
extern int kbdrep ; /* number of repetitions */
extern int kbdm[] ; /* Holds kayboard macro data */
extern int *kbdptr ; /* current position in keyboard buf */
extern int *kbdend ; /* ptr to end of the keyboard */