aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Salomonsson <plattfot@gmail.com>2020-05-11 16:58:59 -0700
committerFredrik Salomonsson <plattfot@gmail.com>2020-05-11 16:58:59 -0700
commit04eb740c677beb6f54d591d198451d86986f6716 (patch)
treef04b3da7e52dac6851956f16c5cc20cfdcd1445d
parent1ee09915d699f72e90a0d74aae827f60f0e48e8c (diff)
downloadpinentry-rofi-04eb740c677beb6f54d591d198451d86986f6716.tar.gz
Use the html newline when combining the error and description (#10)
Otherwise it will not linebreak properly
-rwxr-xr-xpinentry-rofi.scm2
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&#10;~a"
(pinentry-error pinentry)
(pinentry-desc pinentry))
(pinentry-desc pinentry)))