From 9bdee022c82ea49de03dffee26b4c023f98b046b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 3 Jul 2009 14:17:40 +0000 Subject: [PATCH] (Ffile_attributes): Decode user and group name by the locale's encoding. --- src/ChangeLog | 5 +++++ src/dired.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2dda805e348..1afa3b755d3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2009-07-03 Eli Zaretskii + + * dired.c (Ffile_attributes): Decode user and group name by the + locale's encoding. (Bug#3443) + 2009-07-03 Kenichi Handa * font.c (font_entity_vector_cache): New variable. diff --git a/src/dired.c b/src/dired.c index 999d6683432..1c2149c7d2c 100644 --- a/src/dired.c +++ b/src/dired.c @@ -1012,11 +1012,11 @@ so last access time will always be midnight of that day. */) UNBLOCK_INPUT; } if (uname) - values[2] = build_string (uname); + values[2] = DECODE_SYSTEM (build_string (uname)); else values[2] = make_uid (&s); if (gname) - values[3] = build_string (gname); + values[3] = DECODE_SYSTEM (build_string (gname)); else values[3] = make_gid (&s); -- 2.39.5