Commit 84b65259 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: adjust an error message so it fits all possible cases

The thing after a 'comment' directive is just a string, not the
name of a program nor a command.
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -881,7 +881,7 @@ void grab_and_store(const char *kind, char *ptr, regexlisttype **storage)
}
}
/* Parse and store the name given after a linter/formatter command. */
/* Gather and store the string after a comment/linter/formatter command. */
void pick_up_name(const char *kind, char *ptr, char **storage)
{
assert(ptr != NULL);
......@@ -893,7 +893,7 @@ void pick_up_name(const char *kind, char *ptr, char **storage)
}
if (*ptr == '\0') {
rcfile_error(N_("Missing command after '%s'"), kind);
rcfile_error(N_("Missing argument after '%s'"), kind);
return;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment