summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-10-13 16:01:22 -0400
committerPaul Smith <psmith@gnu.org>2013-10-13 16:48:23 -0400
commit70df3c35bf2f0272f5346a57410a31d9d7d0735c (patch)
tree36b271fded982fddca50814ed382d0cdced569d3 /read.c
parent01a745025dc47ec9dbc2e01933d61897b5409b72 (diff)
downloadgunmake-70df3c35bf2f0272f5346a57410a31d9d7d0735c.tar.gz
[SV 40139] Modify "missing separator" for better translation
Diffstat (limited to 'read.c')
-rw-r--r--read.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/read.c b/read.c
index 15d1b13..83224ac 100644
--- a/read.c
+++ b/read.c
@@ -1120,9 +1120,10 @@ eval (struct ebuffer *ebuf, int set_default)
if (*p2 != '\0')
/* There's no need to be ivory-tower about this: check for
one of the most common bugs found in makefiles... */
- fatal (fstart, _("missing separator%s"),
- (cmd_prefix == '\t' && !strneq (line, " ", 8))
- ? "" : _(" (did you mean TAB instead of 8 spaces?)"));
+ if (cmd_prefix == '\t' && !strneq (line, " ", 8))
+ fatal (fstart, _("missing separator (did you mean TAB instead of 8 spaces?)"));
+ else
+ fatal (fstart, _("missing separator"));
continue;
}