summaryrefslogtreecommitdiff
path: root/Src/Zle/comp.h
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-05 12:06:21 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-05 12:06:21 +0000
commit04118530d4157d3494349e2628246b78465e08f8 (patch)
treeba64a66a1a87fc43d50ca0352cad316ce9362094 /Src/Zle/comp.h
parent057e9700ecb3c5fce374d0afc208798b4f345ee2 (diff)
downloadzsh-04118530d4157d3494349e2628246b78465e08f8.tar.gz
zsh-04118530d4157d3494349e2628246b78465e08f8.zip
some more memory initialisation after allocation; shouldn't possibly have done any harm (11193)
Diffstat (limited to 'Src/Zle/comp.h')
-rw-r--r--Src/Zle/comp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h
index 9239fbee0..3b49b2c25 100644
--- a/Src/Zle/comp.h
+++ b/Src/Zle/comp.h
@@ -65,6 +65,7 @@ struct cmgroup {
int num; /* number of this group */
int nbrbeg; /* number of opened braces */
int nbrend; /* number of closed braces */
+ int new; /* new matches since last permalloc() */
/* The following is collected/used during listing. */
int dcount; /* number of matches to list in columns */
int cols; /* number of columns */
@@ -74,7 +75,6 @@ struct cmgroup {
int totl; /* total length */
int shortest; /* length of shortest match */
Cmgroup perm; /* perm. alloced version of this group */
- int new; /* new matches since last permalloc() */
};