From b4cc04cd92cf1a4bcb5d41830456fba45117b23e Mon Sep 17 00:00:00 2001 From: Fredrik Salomonsson Date: Fri, 8 May 2020 23:21:07 -0700 Subject: Convert hex to char before handling underline for pango-markup --- pinentry-rofi.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pinentry-rofi.scm') 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)))))) -- cgit