From 1b16f748ac5908b803e923624fb2d4dadbeda624 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sun, 23 Mar 2025 17:32:44 +0000 Subject: [PATCH] Bug fixes --- read.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/read.c b/read.c index e7fe958..bab1fbd 100644 --- a/read.c +++ b/read.c @@ -388,7 +388,7 @@ static int read_lbuf (struct linebuf *lbuf, int set_default) { if (*p == '(' || *skip_whitespace (p) == '(') { - arg1 = skip_whitespace (p + 1); + arg1 = skip_whitespace (skip_whitespce (p) + 1); if (!(comma = strchr (p, ',')) || !(q = strrchr (p, ')')) || q < comma) { goto ifeq_invalid_syntax; @@ -413,19 +413,19 @@ static int read_lbuf (struct linebuf *lbuf, int set_default) { } else { - ch = *p; - - if (!*(p = skip_whitespace (p))) { + if (!*skip_whitespace (p)) { goto ifeq_invalid_syntax; } - if (!isspace ((int) ch)) { + if (!isspace ((int) *p)) { - fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq"); + fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq"); exit (EXIT_FAILURE); } + p = skip_whitespace (p); + if (*p == '"' || *p == '\'') { ch = *p++; -- 2.34.1