1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-19 17:05:23 +00:00
uemacs/globals.c

23 lines
656 B
C
Raw Normal View History

/* 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 */
int tabmask = 0x07; /* tabulator mask */
2013-09-25 05:23:52 +00:00
2013-09-27 06:16:29 +00:00
int rval = 0; /* return value of a subprocess */
/* uninitialized global definitions */
int thisflag; /* Flags, this command */
int lastflag; /* Flags, last command */
int curgoal; /* Goal for C-P, C-N */