emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src dired.c [EMACS_23_1_RC]


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs/src dired.c [EMACS_23_1_RC]
Date: Fri, 03 Jul 2009 14:16:19 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         EMACS_23_1_RC
Changes by:     Eli Zaretskii <eliz>    09/07/03 14:16:19

Modified files:
        src            : dired.c 

Log message:
        (Ffile_attributes): Decode user and group name by the locale's encoding.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/dired.c?cvsroot=emacs&only_with_tag=EMACS_23_1_RC&r1=1.163&r2=1.163.2.1

Patches:
Index: dired.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/dired.c,v
retrieving revision 1.163
retrieving revision 1.163.2.1
diff -u -b -r1.163 -r1.163.2.1
--- dired.c     23 May 2009 09:09:28 -0000      1.163
+++ dired.c     3 Jul 2009 14:16:19 -0000       1.163.2.1
@@ -1012,11 +1012,11 @@
       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);
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]