mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-23 01:31:27 +01:00
45583/0002: internal: Reduce some variables' visibility. No functional change.
This commit is contained in:
parent
e94e828efd
commit
be73026b07
2 changed files with 10 additions and 8 deletions
15
Src/parse.c
15
Src/parse.c
|
|
@ -253,14 +253,13 @@ struct heredocs *hdocs;
|
|||
* to avoid a lot of string parsing and some more string duplication.
|
||||
*/
|
||||
|
||||
/**/
|
||||
int eclen, ecused, ecnpats;
|
||||
/**/
|
||||
Wordcode ecbuf;
|
||||
/**/
|
||||
Eccstr ecstrs;
|
||||
/**/
|
||||
int ecsoffs, ecssub, ecnfunc;
|
||||
static int eclen, ecused, ecnpats;
|
||||
|
||||
static Wordcode ecbuf;
|
||||
|
||||
static Eccstr ecstrs;
|
||||
|
||||
static int ecsoffs, ecssub, ecnfunc;
|
||||
|
||||
#define EC_INIT_SIZE 256
|
||||
#define EC_DOUBLE_THRESHOLD 32768
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue