diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-11 16:58:59 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-11 16:58:59 -0700 |
commit | 04eb740c677beb6f54d591d198451d86986f6716 (patch) | |
tree | f04b3da7e52dac6851956f16c5cc20cfdcd1445d | |
parent | 1ee09915d699f72e90a0d74aae827f60f0e48e8c (diff) | |
download | pinentry-rofi-04eb740c677beb6f54d591d198451d86986f6716.tar.gz |
Use the html newline when combining the error and description (#10)
Otherwise it will not linebreak properly
-rwxr-xr-x | pinentry-rofi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index f5ab3cf..76fc0df 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -338,7 +338,7 @@ Return the input from the user if succeeded else #f." (define (compose-message pinentry) "Create the message by combining the error and desc from PINENTRY" (if (pinentry-error pinentry) - (format #f "~a\n~a" + (format #f "~a ~a" (pinentry-error pinentry) (pinentry-desc pinentry)) (pinentry-desc pinentry))) |