1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-18 16:35:23 +00:00
uemacs/globals.c

18 lines
560 B
C

/* globals.c -- implements globals.h */
#include "globals.h"
#include "defines.h"
/* initialized global definitions */
int metac = CONTROL | '['; /* current meta character */
int ctlxc = CONTROL | 'X'; /* current control X prefix char */
int reptc = CONTROL | 'U'; /* current universal repeat char */
int abortc = CONTROL | 'G'; /* current abort command char */
/* uninitialized global definitions */
int thisflag; /* Flags, this command */
int lastflag; /* Flags, last command */
int curgoal; /* Goal for C-P, C-N */