about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-04-28 22:06:00 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-04-28 22:06:00 +0000
commit2aae84ff481d94f7eddcc0380eeabf7fe3354b51 (patch)
tree3a4cbbf3be30813bd0c70d0ea22881623c4652ed
parent7e98c4c3a641a18b997f58f8f16a339bad11ae74 (diff)
downloadzsh-2aae84ff481d94f7eddcc0380eeabf7fe3354b51.tar.gz
zsh-2aae84ff481d94f7eddcc0380eeabf7fe3354b51.tar.xz
zsh-2aae84ff481d94f7eddcc0380eeabf7fe3354b51.zip
zsh-workers:6129
-rw-r--r--Src/Zle/comp.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h
index 6bb9f360f..4dffb5011 100644
--- a/Src/Zle/comp.h
+++ b/Src/Zle/comp.h
@@ -275,24 +275,24 @@ struct cpattern {
 typedef struct cadata *Cadata;
 
 struct cadata {
-    char *ipre;
-    char *isuf;
-    char *ppre;
-    char *psuf;
-    char *prpre;
-    char *pre;
-    char *suf;
-    char *group;
-    char *rems;
-    char *remf;
-    char *ign;
-    int flags;
-    int aflags;
-    Cmatcher match;
-    char *exp;
-    char *apar;
-    char *opar;
-    char *dpar;
+    char *ipre;			/* ignored prefix (-i) */
+    char *isuf;			/* ignored suffix (-I) */
+    char *ppre;			/* `path' prefix (-p) */
+    char *psuf;			/* `path' suffix (-s) */
+    char *prpre;		/* expanded `path' prefix (-W) */
+    char *pre;			/* prefix to insert (-P) */
+    char *suf;			/* suffix to insert (-S) */
+    char *group;		/* name of the group (-[JV]) */
+    char *rems;			/* remove suffix on chars... (-r) */
+    char *remf;			/* function to remove suffix (-R) */
+    char *ign;			/* ignored suffixes (-F) */
+    int flags;			/* CMF_* flags (-[fqn]) */
+    int aflags;			/* CAF_* flags (-[QUa]) */
+    Cmatcher match;		/* match spec (parsed from -M) */
+    char *exp;			/* explanation (-X) */
+    char *apar;			/* array to store matches in (-A) */
+    char *opar;			/* array to store originals in (-O) */
+    char *dpar;			/* array to delete non-matches in (-D) */
 };
 
 /* Flags for special parameters. */