+2009-07-03 Eli Zaretskii <eliz@gnu.org>
+
+ * dired.c (Ffile_attributes): Decode user and group name by the
+ locale's encoding. (Bug#3443)
+
2009-07-03 Kenichi Handa <handa@m17n.org>
* font.c (font_entity_vector_cache): New variable.
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);