diff options
-rwxr-xr-x | pinentry-rofi.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index 88e2162..8dcfb09 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -60,8 +60,8 @@ (string=? str "")) (define (html-newline str) - "Replace \\\\n with " - (regexp-substitute/global #f "\\\\n" str 'pre " " 'post)) + "Replace %0A with " + (regexp-substitute/global #f "%0A" str 'pre " " 'post)) (define (html-< str) "Replace < with <" |