Cygwin: fix formatting: drop spaces leading tabs

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2020-03-11 13:23:55 +01:00
parent 256bc8bde0
commit d2ef2331f9
47 changed files with 137 additions and 137 deletions

View File

@@ -108,7 +108,7 @@ static struct cname {
{"four", '4'},
{"five", '5'},
{"six", '6'},
{"seven", '7'},
{"seven", '7'},
{"eight", '8'},
{"nine", '9'},
{"colon", ':'},

View File

@@ -1842,7 +1842,7 @@ computematchjumps(struct parse *p, struct re_guts *g)
suffix++;
}
if (suffix < g->mlen)
ssuffix = pmatches[ssuffix];
ssuffix = pmatches[ssuffix];
}
free(pmatches);

View File

@@ -38,14 +38,14 @@
* First, the stuff that ends up in the outside-world include file
= typedef off_t regoff_t;
= typedef struct {
= int re_magic;
= size_t re_nsub; // number of parenthesized subexpressions
= const char *re_endp; // end pointer for REG_PEND
= struct re_guts *re_g; // none of your business :-)
= int re_magic;
= size_t re_nsub; // number of parenthesized subexpressions
= const char *re_endp; // end pointer for REG_PEND
= struct re_guts *re_g; // none of your business :-)
= } regex_t;
= typedef struct {
= regoff_t rm_so; // start of match
= regoff_t rm_eo; // end of match
= regoff_t rm_so; // start of match
= regoff_t rm_eo; // end of match
= } regmatch_t;
*/
/*