mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-19 07:46:24 -05:00
Move gflags to eval.
This commit is contained in:
parent
4da4c2f4de
commit
31b1cc84fb
1
edef.h
1
edef.h
@ -29,7 +29,6 @@ extern int eolexist; /* does clear to EOL exist? */
|
|||||||
extern int revexist; /* does reverse video exist? */
|
extern int revexist; /* does reverse video exist? */
|
||||||
extern int flickcode; /* do flicker supression? */
|
extern int flickcode; /* do flicker supression? */
|
||||||
extern int gmode; /* global editor mode */
|
extern int gmode; /* global editor mode */
|
||||||
extern int gflags; /* global control flag */
|
|
||||||
extern int gfcolor; /* global forgrnd color (white) */
|
extern int gfcolor; /* global forgrnd color (white) */
|
||||||
extern int gbcolor; /* global backgrnd color (black) */
|
extern int gbcolor; /* global backgrnd color (black) */
|
||||||
extern int gasave; /* global ASAVE size */
|
extern int gasave; /* global ASAVE size */
|
||||||
|
@ -224,10 +224,6 @@
|
|||||||
#define ENVFUNC 0
|
#define ENVFUNC 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Emacs global flag bit definitions (for gflags). */
|
|
||||||
|
|
||||||
#define GFREAD 1
|
|
||||||
|
|
||||||
/* Internal constants. */
|
/* Internal constants. */
|
||||||
|
|
||||||
#define NBINDS 256 /* max # of bound keys */
|
#define NBINDS 256 /* max # of bound keys */
|
||||||
|
2
eval.c
2
eval.c
@ -37,6 +37,8 @@
|
|||||||
char outline[ NSTRING] ; /* global string to hold debug line text */
|
char outline[ NSTRING] ; /* global string to hold debug line text */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int gflags = GFREAD ; /* global control flag */
|
||||||
|
|
||||||
/* Max #chars in a var name. */
|
/* Max #chars in a var name. */
|
||||||
#define NVSIZE 10
|
#define NVSIZE 10
|
||||||
|
|
||||||
|
6
eval.h
6
eval.h
@ -11,6 +11,12 @@ extern char outline[] ; /* Global string to hold debug line text. */
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Emacs global flag bit definitions (for gflags). */
|
||||||
|
|
||||||
|
#define GFREAD 1
|
||||||
|
|
||||||
|
extern int gflags ; /* global control flag */
|
||||||
|
|
||||||
/* Macro argument token types */
|
/* Macro argument token types */
|
||||||
|
|
||||||
#define TKNUL 0 /* end-of-string */
|
#define TKNUL 0 /* end-of-string */
|
||||||
|
@ -14,7 +14,6 @@ int eolexist = TRUE; /* does clear to EOL exist */
|
|||||||
int revexist = FALSE; /* does reverse video exist? */
|
int revexist = FALSE; /* does reverse video exist? */
|
||||||
int flickcode = FALSE; /* do flicker supression? */
|
int flickcode = FALSE; /* do flicker supression? */
|
||||||
int gmode = 0; /* global editor mode */
|
int gmode = 0; /* global editor mode */
|
||||||
int gflags = GFREAD; /* global control flag */
|
|
||||||
int gasave = 256; /* global ASAVE size */
|
int gasave = 256; /* global ASAVE size */
|
||||||
int gacount = 256; /* count until next ASAVE */
|
int gacount = 256; /* count until next ASAVE */
|
||||||
int sgarbf = TRUE; /* TRUE if screen is garbage */
|
int sgarbf = TRUE; /* TRUE if screen is garbage */
|
||||||
|
Loading…
Reference in New Issue
Block a user