summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-05-26 14:06:25 -0400
committerPaul Smith <psmith@gnu.org>2013-05-26 14:06:25 -0400
commit2fc0f614becf8e7de4fbd5b87cbc812b407ad39a (patch)
tree5daab7d24f0add895f2a0a54313a18e34bf909ce /read.c
parentbf60bbd67a345c27fae513372dd05a8c019176f6 (diff)
downloadgunmake-2fc0f614becf8e7de4fbd5b87cbc812b407ad39a.tar.gz
[SV #39028] Fix some small typos in messages.
Diffstat (limited to 'read.c')
-rw-r--r--read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/read.c b/read.c
index 87cd554..36d3a8f 100644
--- a/read.c
+++ b/read.c
@@ -1566,7 +1566,7 @@ conditional_line (char *line, int len, const gmk_floc *flocp)
/* Found one: skip past it and any whitespace after it. */
line = next_token (line + len);
-#define EXTRANEOUS() error (flocp, _("Extraneous text after '%s' directive"), cmdname)
+#define EXTRANEOUS() error (flocp, _("extraneous text after '%s' directive"), cmdname)
/* An 'endif' cannot contain extra text, and reduces the if-depth by 1 */
if (cmdtype == c_endif)
@@ -2082,7 +2082,7 @@ record_files (struct nameseq *filenames, const char *pattern,
more than once. Just give a warning since this is harmless. */
if (cmds != 0 && cmds == f->cmds)
error (flocp,
- _("target '%s' given more than once in the same rule."),
+ _("target '%s' given more than once in the same rule"),
f->name);
/* Check for two single-colon entries both with commands.