Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
80904120
Commit
80904120
authored
Jul 03, 2009
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Ffile_attributes): Decode user and group names by the locale's encoding.
parent
f8d23104
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/dired.c
src/dired.c
+2
-2
No files found.
src/ChangeLog
View file @
80904120
2009-07-03 Eli Zaretskii <eliz@gnu.org>
* dired.c (Ffile_attributes): Decode user and group names by the
locale's encoding. (Bug#3443)
2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
* sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
...
...
src/dired.c
View file @
80904120
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment