From c85e52fd8502b18f5d192825ce0d2e0e6584c94f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 22 Sep 2023 15:17:10 -0400 Subject: [PATCH] hmmm --- ..._22810372eecd3c567817623de9eb47c6._comment | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc/bugs/__34__git_annex_adjust__34___does_not_respect_utf8_in_the_commit_author_field/comment_3_22810372eecd3c567817623de9eb47c6._comment diff --git a/doc/bugs/__34__git_annex_adjust__34___does_not_respect_utf8_in_the_commit_author_field/comment_3_22810372eecd3c567817623de9eb47c6._comment b/doc/bugs/__34__git_annex_adjust__34___does_not_respect_utf8_in_the_commit_author_field/comment_3_22810372eecd3c567817623de9eb47c6._comment new file mode 100644 index 0000000000..82df9c673a --- /dev/null +++ b/doc/bugs/__34__git_annex_adjust__34___does_not_respect_utf8_in_the_commit_author_field/comment_3_22810372eecd3c567817623de9eb47c6._comment @@ -0,0 +1,28 @@ +[[!comment format=mdwn + username="joey" + subject="""comment 3""" + date="2023-09-22T19:13:32Z" + content=""" + joey@darkstar:~>cat f + Félix + joey@darkstar:~>cat foo.hs + import System.Process + import qualified GHC.IO.Encoding as Encoding + + main = do + e <- Encoding.getFileSystemEncoding + Encoding.setLocaleEncoding e + v <- readFile "f" + print v + (_, _, _, p) <- createProcess (proc "sh" ["-c", "echo test $V"]) + { env = Just [("V", v)] } + waitForProcess p + return () + joey@darkstar:~>LANG=C runghc foo.hs + "F\56515\56489lix\n" + test Félix + +Interesting! This confirms that "F\56515\56489lix" is the correctly +encoded value. And yet here, the environment variable gets set correctly +as well, and it round-trips. +"""]]