mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-28 00:31:00 +02:00
zsh-workers:6129
This commit is contained in:
parent
7e98c4c3a6
commit
2aae84ff48
1 changed files with 18 additions and 18 deletions
|
@ -275,24 +275,24 @@ struct cpattern {
|
||||||
typedef struct cadata *Cadata;
|
typedef struct cadata *Cadata;
|
||||||
|
|
||||||
struct cadata {
|
struct cadata {
|
||||||
char *ipre;
|
char *ipre; /* ignored prefix (-i) */
|
||||||
char *isuf;
|
char *isuf; /* ignored suffix (-I) */
|
||||||
char *ppre;
|
char *ppre; /* `path' prefix (-p) */
|
||||||
char *psuf;
|
char *psuf; /* `path' suffix (-s) */
|
||||||
char *prpre;
|
char *prpre; /* expanded `path' prefix (-W) */
|
||||||
char *pre;
|
char *pre; /* prefix to insert (-P) */
|
||||||
char *suf;
|
char *suf; /* suffix to insert (-S) */
|
||||||
char *group;
|
char *group; /* name of the group (-[JV]) */
|
||||||
char *rems;
|
char *rems; /* remove suffix on chars... (-r) */
|
||||||
char *remf;
|
char *remf; /* function to remove suffix (-R) */
|
||||||
char *ign;
|
char *ign; /* ignored suffixes (-F) */
|
||||||
int flags;
|
int flags; /* CMF_* flags (-[fqn]) */
|
||||||
int aflags;
|
int aflags; /* CAF_* flags (-[QUa]) */
|
||||||
Cmatcher match;
|
Cmatcher match; /* match spec (parsed from -M) */
|
||||||
char *exp;
|
char *exp; /* explanation (-X) */
|
||||||
char *apar;
|
char *apar; /* array to store matches in (-A) */
|
||||||
char *opar;
|
char *opar; /* array to store originals in (-O) */
|
||||||
char *dpar;
|
char *dpar; /* array to delete non-matches in (-D) */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Flags for special parameters. */
|
/* Flags for special parameters. */
|
||||||
|
|
Loading…
Reference in a new issue