From 4ba9e70f9af2e7b8a7f2c6c0e7064a0453f36e57 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Thu, 25 Jun 2020 23:01:59 -0500 Subject: [PATCH] Remove extraneous line break in the middle of an error message --- src/builtin_function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_function.cpp b/src/builtin_function.cpp index 065603e4f..28b40706d 100644 --- a/src/builtin_function.cpp +++ b/src/builtin_function.cpp @@ -189,7 +189,7 @@ static int validate_function_name(int argc, const wchar_t *const *argv, wcstring if (parser_keywords_is_reserved(function_name)) { streams.err.append_format( - _(L"%ls: The name '%ls' is reserved,\nand can not be used as a function name"), cmd, + _(L"%ls: The name '%ls' is reserved, and cannot be used as a function name"), cmd, function_name.c_str()); return STATUS_INVALID_ARGS; }