aboutsummaryrefslogtreecommitdiff
path: root/editors/awk.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/awk.c')
-rw-r--r--editors/awk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c
index e91c37678..b776dd796 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -1470,7 +1470,7 @@ static int awk_split(char *s, node *spl, char **slist)
1470 } 1470 }
1471 } else { /* space split */ 1471 } else { /* space split */
1472 while (*s) { 1472 while (*s) {
1473 while (isspace(*s)) s++; 1473 s = skip_whitespace(s);
1474 if (! *s) break; 1474 if (! *s) break;
1475 n++; 1475 n++;
1476 while (*s && !isspace(*s)) 1476 while (*s && !isspace(*s))