bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#43353: 28.0.50; "make check" fails if there are non-ASCII characters


From: Glenn Morris
Subject: bug#43353: 28.0.50; "make check" fails if there are non-ASCII characters in the Emacs path
Date: Sat, 12 Sep 2020 23:17:38 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

AFAICS the sole remaining failure is tramp-archive-test02-file-name-dissect,
where host != (url-hexify-string (concat 
"file://"tramp-archive-test-file-archive))
This fails because:
host = tramp-archive-gvfs-host =
  (url-hexify-string (tramp-gvfs-url-file-name ... ))
  where tramp-gvfs-url-file-name also does a url-hexify-string
So host contains the result of two applications of url-hexify-string,
meaning that a literal % ends up replaced by a %25.
So comparing this for equality with the result of a single
url-hexify-string fails.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]