Trivial changes: whitespace and modes.

Remote whitespace at the ends of lines.
Remove blank lines from the ends of files.
Change modes on source files so that they
are not executable.

Signed-off-by: Dan Cross <cross@gajendra.net>
This commit is contained in:
Dan Cross 2020-01-10 14:44:21 +00:00
parent 77a0a5b519
commit fa325e9b42
1021 changed files with 5688 additions and 6193 deletions

View file

@ -81,7 +81,7 @@ typedef struct SEDCOM {
#define YCOM 026
#define XCOM 033
typedef struct label { /* Label symbol table */
Rune asc[9]; /* Label name */
SedCom *chain;
@ -632,7 +632,7 @@ compsub(Rune *rhs, Rune *end)
}
if (rhs < end)
*rhs++ = r;
else
else
return 0;
}
@ -725,7 +725,7 @@ getrune(void)
c = '\n'; /* fake an end-of-line */
prog.pctl.curr = 0;
}
} else
} else
c = -1;
} else if ((c = Bgetrune(prog.pctl.bp)) < 0)
Bterm(prog.pctl.bp);
@ -992,7 +992,7 @@ match(Reprog *pattern, Rune *buf)
{
if (!pattern)
return 0;
subexp[0].s.rsp = buf;
subexp[0].s.rsp = buf;
subexp[0].e.rep = 0;
if (rregexec(pattern, linebuf, subexp, MAXSUB) > 0) {
loc1 = subexp[0].s.rsp;