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.
'("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)