diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-08 23:21:07 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-08 23:21:07 -0700 |
commit | b4cc04cd92cf1a4bcb5d41830456fba45117b23e (patch) | |
tree | a9e23f0ffc9e9e0317103bc8168497b989a153b4 | |
parent | 898d72bb85c7d01e842e8911e9f144b595970f80 (diff) | |
download | pinentry-rofi-b4cc04cd92cf1a4bcb5d41830456fba45117b23e.tar.gz |
Convert hex to char before handling underline for pango-markup
-rwxr-xr-x | pinentry-rofi.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index c66d97d..fe4227c 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -135,9 +135,9 @@ Always call this after `remove-underline' or (define (pango-markup str) "Transform string to pango." - (hex->char - (escape-underscore - (html-underline + (escape-underscore + (html-underline + (hex->char (html-< (html-newline str)))))) |