aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 39ae4cc..98eb8b3 100644
--- a/utils.c
+++ b/utils.c
@@ -19,7 +19,8 @@ const char *after_spaces(const char *str)
// Skip whitespace and comments:
skip_whitespace:
switch (*str) {
- case ' ': case '\r': case '\n': case '\t': {
+ // case ' ': case '\r': case '\n': case '\t': {
+ case ' ': case '\t': {
++str;
goto skip_whitespace;
}