From fa325e9b42b0bdfb48857d1958d9fb7ceac55151 Mon Sep 17 00:00:00 2001 From: Dan Cross Date: Fri, 10 Jan 2020 14:44:21 +0000 Subject: 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 --- src/cmd/sed.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cmd/sed.c') diff --git a/src/cmd/sed.c b/src/cmd/sed.c index a78c9c66..23615cf2 100644 --- a/src/cmd/sed.c +++ b/src/cmd/sed.c @@ -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; -- cgit v1.2.3