From: Eli Zaretskii Date: Fri, 3 Jul 2009 14:17:40 +0000 (+0000) Subject: (Ffile_attributes): Decode user and group name by the locale's encoding. X-Git-Tag: emacs-pretest-23.0.96~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9bdee022c82ea49de03dffee26b4c023f98b046b;p=emacs.git (Ffile_attributes): Decode user and group name by the locale's encoding. --- 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);