mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
Move global fillcol to random.
This commit is contained in:
parent
0fdefdba7c
commit
96ca2e8580
@ -5,9 +5,6 @@
|
||||
|
||||
/* initialized global definitions */
|
||||
|
||||
int fillcol = 72; /* Current fill column */
|
||||
|
||||
|
||||
int metac = CONTROL | '['; /* current meta character */
|
||||
int ctlxc = CONTROL | 'X'; /* current control X prefix char */
|
||||
int reptc = CONTROL | 'U'; /* current universal repeat char */
|
||||
|
@ -5,8 +5,6 @@
|
||||
|
||||
/* Initialized global external declarations. */
|
||||
|
||||
extern int fillcol; /* Fill column */
|
||||
|
||||
extern int metac; /* current meta character */
|
||||
extern int ctlxc; /* current control X prefix char */
|
||||
extern int reptc; /* current universal repeat char */
|
||||
|
8
random.c
8
random.c
@ -36,10 +36,12 @@ static const char *cname[] = { /* names of colors */
|
||||
|
||||
#define NCOLORS (sizeof cname / sizeof( *cname)) /* # of supported colors */
|
||||
|
||||
int gfcolor = NCOLORS - 1 ; /* global forgrnd color (white) */
|
||||
int gbcolor = 0 ; /* global backgrnd color (black) */
|
||||
int gfcolor = NCOLORS - 1 ; /* global forgrnd color (white) */
|
||||
int gbcolor = 0 ; /* global backgrnd color (black) */
|
||||
|
||||
int tabsize ; /* Tab size (0: use real tabs) */
|
||||
int fillcol = 72 ; /* Current fill column */
|
||||
|
||||
int tabsize; /* Tab size (0: use real tabs) */
|
||||
|
||||
/*
|
||||
* Set fill column to n.
|
||||
|
Loading…
Reference in New Issue
Block a user