mirror of
https://github.com/rfivet/uemacs.git
synced 2025-02-20 23:17:13 -05:00
Move macbug, cmdstatus and saveflag to eval.
This commit is contained in:
parent
31b1cc84fb
commit
a027973156
3
edef.h
3
edef.h
@ -60,9 +60,6 @@ extern int kbdrep; /* number of repetitions */
|
||||
extern int restflag; /* restricted use? */
|
||||
extern int lastkey; /* last keystoke */
|
||||
extern long envram; /* # of bytes current in use by malloc */
|
||||
extern int macbug; /* macro debuging flag */
|
||||
extern int cmdstatus; /* last command status */
|
||||
extern int saveflag; /* Flags, saved with the $target var */
|
||||
extern int rval; /* return value of a subprocess */
|
||||
extern int overlap; /* line overlap in forw/back page */
|
||||
extern int scrollcount; /* number of lines to scroll */
|
||||
|
5
eval.c
5
eval.c
@ -38,6 +38,11 @@ char outline[ NSTRING] ; /* global string to hold debug line text */
|
||||
#endif
|
||||
|
||||
int gflags = GFREAD ; /* global control flag */
|
||||
int macbug = FALSE ; /* macro debuging flag */
|
||||
int cmdstatus = TRUE ; /* last command status */
|
||||
|
||||
static int saveflag = 0 ; /* Flags, saved with the $target var */
|
||||
|
||||
|
||||
/* Max #chars in a var name. */
|
||||
#define NVSIZE 10
|
||||
|
2
eval.h
2
eval.h
@ -16,6 +16,8 @@ extern char outline[] ; /* Global string to hold debug line text. */
|
||||
#define GFREAD 1
|
||||
|
||||
extern int gflags ; /* global control flag */
|
||||
extern int macbug ; /* macro debuging flag */
|
||||
extern int cmdstatus ; /* last command status */
|
||||
|
||||
/* Macro argument token types */
|
||||
|
||||
|
@ -34,9 +34,6 @@ int kbdrep = 0; /* number of repetitions */
|
||||
int restflag = FALSE; /* restricted use? */
|
||||
int lastkey = 0; /* last keystoke */
|
||||
long envram = 0l; /* # of bytes current in use by malloc */
|
||||
int macbug = FALSE; /* macro debuging flag */
|
||||
int cmdstatus = TRUE; /* last command status */
|
||||
int saveflag = 0; /* Flags, saved with the $target var */
|
||||
int rval = 0; /* return value of a subprocess */
|
||||
int overlap = 0; /* line overlap in forw/back page */
|
||||
int scrollcount = 1; /* number of lines to scroll */
|
||||
|
Loading…
x
Reference in New Issue
Block a user