From 722dc55de310f23c38f0baefd6a8d5d7cf28477b Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Thu, 30 Jul 2020 13:16:56 +0200 Subject: [PATCH] Use unhex URLs in the header If we don't use url-unhex-string on the header, we're going to end up with URL's containing percent escaped stuff like The%20Word, and in header lines (as in mode lines) the percent gets replaced by stuff. Thus, in these cases my header line used to look terrible as random stuff would get inserted. --- elpher.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/elpher.el b/elpher.el index ea20525..d62f474 100644 --- a/elpher.el +++ b/elpher.el @@ -529,8 +529,9 @@ unless NO-HISTORY is non-nil." '("gophers" "gemini"))) " [TLS encryption]" "")) - (header (concat display-string - (propertize tls-string 'face 'bold)))) + (header (url-unhex-string + (concat display-string + (propertize tls-string 'face 'bold))))) (setq header-line-format header)))) (defmacro elpher-with-clean-buffer (&rest args) -- 2.20.1