mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-17 18:16:22 -05:00
22 lines
648 B
C
22 lines
648 B
C
/* globals.h -- Global variable definitions */
|
|
|
|
#ifndef __GLOBALS_H__
|
|
#define __GLOBALS_H__
|
|
|
|
/* Initialized global external declarations. */
|
|
|
|
extern int metac; /* current meta character */
|
|
extern int ctlxc; /* current control X prefix char */
|
|
extern int reptc; /* current universal repeat char */
|
|
extern int abortc; /* current abort command char */
|
|
|
|
/* Uninitialized global external declarations. */
|
|
|
|
#define CFCPCN 0x0001 /* Last command was C-P, C-N */
|
|
#define CFKILL 0x0002 /* Last command was a kill */
|
|
|
|
extern int thisflag; /* Flags, this command */
|
|
extern int lastflag; /* Flags, last command */
|
|
|
|
#endif
|