From f6da9d4d5d04e9bd4e1e12727c1672e61495f33a Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Mon, 8 Sep 2014 23:37:34 -0700 Subject: [PATCH] Add missing newline after `bind -k foo` error message --- builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin.cpp b/builtin.cpp index cde4477fb..3ab3bb486 100644 --- a/builtin.cpp +++ b/builtin.cpp @@ -702,7 +702,7 @@ static int builtin_bind(parser_t &parser, wchar_t **argv) case 1: { res = STATUS_BUILTIN_ERROR; - append_format(stderr_buffer, _(L"%ls: Expected zero or at least two parameters, got %d"), argv[0], argc-woptind); + append_format(stderr_buffer, _(L"%ls: Expected zero or at least two parameters, got %d\n"), argv[0], argc-woptind); break; }