aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Salomonsson <plattfot@gmail.com>2020-05-08 23:21:07 -0700
committerFredrik Salomonsson <plattfot@gmail.com>2020-05-08 23:21:07 -0700
commitb4cc04cd92cf1a4bcb5d41830456fba45117b23e (patch)
treea9e23f0ffc9e9e0317103bc8168497b989a153b4
parent898d72bb85c7d01e842e8911e9f144b595970f80 (diff)
downloadpinentry-rofi-b4cc04cd92cf1a4bcb5d41830456fba45117b23e.tar.gz
Convert hex to char before handling underline for pango-markup
-rwxr-xr-xpinentry-rofi.scm6
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))))))