mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-31 03:25:08 +00:00
[SV 40139] Modify "missing separator" for better translation
This commit is contained in:
parent
01a745025d
commit
70df3c35bf
1 changed files with 4 additions and 3 deletions
7
read.c
7
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue