1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* dired.c (Ffile_attributes): Increase size of modes from 10 to 12

This commit is contained in:
Paul Eggert 2011-02-24 22:30:50 -08:00
parent 6a88f031c8
commit b18947669c
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
* dired.c (Ffile_attributes): Increase size of modes from 10 to 12
as per recent filemodestring API change. Reported by Jonas Öster in
<http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
2011-02-23 Ben Key <bkey76@gmail.com> (tiny change)
* nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument

View file

@ -937,7 +937,7 @@ so last access time will always be midnight of that day. */)
Lisp_Object dirname;
struct stat sdir;
#endif /* BSD4_2 */
char modes[10];
char modes[12];
Lisp_Object handler;
struct gcpro gcpro1;
char *uname = NULL, *gname = NULL;