]> git.eshelyaron.com Git - emacs.git/commitdiff
(Ffile_attributes): Decode user and group name by the locale's encoding.
authorEli Zaretskii <eliz@gnu.org>
Fri, 3 Jul 2009 14:17:40 +0000 (14:17 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 3 Jul 2009 14:17:40 +0000 (14:17 +0000)
src/ChangeLog
src/dired.c

index 2dda805e348d92542acd112958927caf40a0509a..1afa3b755d3c291282f6465ac5a96f9928439540 100644 (file)
@@ -1,3 +1,8 @@
+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.
index 999d6683432332ce1107fd71dde073d1c138098c..1c2149c7d2c2625531f6aae5932bd29bc2de31b4 100644 (file)
@@ -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);