Mercurial > emacs
changeset 53636:83645a5b04ce
(Ffile_attributes): Lisp_Object/int mixup.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 20 Jan 2004 21:18:31 +0000 |
parents | 855d74c23e51 |
children | 46f44b9f4e04 |
files | src/dired.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dired.c Tue Jan 20 17:48:00 2004 +0000 +++ b/src/dired.c Tue Jan 20 21:18:31 2004 +0000 @@ -1,5 +1,5 @@ /* Lisp functions for making directory listings. - Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001 + Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001, 2004 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -941,9 +941,9 @@ else { pw = (struct passwd *) getpwuid (s.st_uid); - values[2] = (pw ? build_string (pw->pw_name) : s.st_uid); + values[2] = (pw ? build_string (pw->pw_name) : make_number (s.st_uid)); gr = (struct group *) getgrgid (s.st_gid); - values[3] = (gr ? build_string (gr->gr_name) : s.st_gid); + values[3] = (gr ? build_string (gr->gr_name) : make_number (s.st_gid)); } values[4] = make_time (s.st_atime); values[5] = make_time (s.st_mtime);