diff options
| author | Teddy Wing | 2022-05-08 19:17:07 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2022-05-08 19:17:07 +0200 | 
| commit | 8b018652547961d066c11df587ce0ea6f6895ad0 (patch) | |
| tree | 1b70020cde6e83d9a5e029a45b15aecb83b902e0 /src | |
| parent | 7c5363d3827b8f53a4f0196989c22f0606b3f2db (diff) | |
| download | wajir-8b018652547961d066c11df587ce0ea6f6895ad0.tar.bz2 | |
option.lisp: Append newlines to error messages
Diffstat (limited to 'src')
| -rw-r--r-- | src/option.lisp | 4 | 
1 files 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+))  | 
