From 55c00544cc2ae2a91471d3ffdc3ca1974061387a Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 7 Jul 2014 03:43:57 -0400 Subject: * read.c (eval): [SV 41677] Correct test for TAB vs. 8 spaces. --- read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'read.c') diff --git a/read.c b/read.c index 1fe229b..fe33ab2 100644 --- a/read.c +++ b/read.c @@ -1123,7 +1123,7 @@ eval (struct ebuffer *ebuf, int set_default) /* There's no need to be ivory-tower about this: check for one of the most common bugs found in makefiles... */ - if (cmd_prefix == '\t' && !strneq (line, " ", 8)) + if (cmd_prefix == '\t' && strneq (line, " ", 8)) O (fatal, fstart, _("missing separator (did you mean TAB instead of 8 spaces?)")); else O (fatal, fstart, _("missing separator")); -- cgit v1.2.3