commit 73c408f1358aba0ad50eca04c10e1fe06c969ccd
parent 9d1668acadbddc53c673e19d4213365e92b8dbee
Author: Drazen Borkovic <borkovic@users.noreply.github.com>
Date: Sat, 26 Aug 2017 16:32:02 -0700
Remove space at end of line
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/builtins.c b/builtins.c
@@ -84,8 +84,8 @@ extern void funcall(char **av) {
except(eVarstack, star, &e2);
walk(treecpy(fnlookup(*av), nalloc), TRUE);
varrm("*", TRUE);
- unexcept(eVarstack);
- unexcept(eReturn);
+ unexcept(eVarstack);
+ unexcept(eReturn);
}
static void arg_count(char *name) {
diff --git a/walk.c b/walk.c
@@ -375,7 +375,7 @@ static void dopipe(Node *n) {
/* From http://en.cppreference.com/w/c/program/setjmp
* According to the C standard setjmp() must appear only in the following 4 constructs:
* 1. switch (setjmp(args)) {statements}
- * 2. if (setjmp(args) == Const) {statements} with any of
+ * 2. if (setjmp(args) == Const) {statements} with any of
* operators: ==, !=, <, >, <=, >=
* 3. while (! setjmp(args)) {statements}
* 4. setjmp(args);