diff options
| author | Mattias Andrée <m@maandree.se> | 2026-02-22 14:56:29 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2026-02-22 14:56:29 +0100 |
| commit | 8b6ff042d0a5f7da13abc45d632755fd09f50a7e (patch) | |
| tree | e33752523d392d54e4511df1672742c31df1c3a8 /makel.c | |
| parent | Update e-mail (diff) | |
| download | makel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.gz makel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.bz2 makel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.xz | |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | makel.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -74,10 +74,10 @@ check_line_continuations(struct line *lines, size_t nlines) if (lines[cont_from].len && !isspace(lines[cont_from].data[lines[cont_from].len - 1])) { /* test cases: cont_without_ws.mk (TODO with i != cont_from + 1) */ warnf_confusing(WC_SPACELESS_CONTINUATION, - "%s:%zu,%zu: <backslash> is proceeded by a non-white space " + "%s:%zu,%zu: <backslash> is preceded by a non-white space " "character at the same time as the next line%s begins with " "a non-white space character, this can cause confusion as " - "the make utility will add a whitespace", + "the make utility will add a white space", lines[cont_from].path, lines[cont_from].lineno, lines[i].lineno, i == cont_from + 1 ? "" : ", that consist of not only a <backslash>,"); |
