From 8b018652547961d066c11df587ce0ea6f6895ad0 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 8 May 2022 19:17:07 +0200 Subject: option.lisp: Append newlines to error messages --- src/option.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/option.lisp b/src/option.lisp index 5a1444c..2ffaa97 100644 --- a/src/option.lisp +++ b/src/option.lisp @@ -113,12 +113,12 @@ with code `exit-code`." ;; If `sendmail` is given, `email-to` must be defined. (when (not (null (getf options :sendmail))) (when (null (getf options :email-to)) - (format *error-output* "error: `--sendmail' requires `--email-to'") + (format *error-output* "error: `--sendmail' requires `--email-to'~%") (opts:exit sysexits:+usage+))) ;; Error if JQL is empty (when (null free-args) - (format *error-output* "error: missing JQL") + (format *error-output* "error: missing JQL~%") (opts:exit sysexits:+usage+)) -- cgit v1.2.3