* src/dired.c: Add comment and code explaining magic number.

This commit is contained in:
Paul Eggert 2011-02-25 11:08:18 -08:00
parent 7fe42546dd
commit 4ad8955513

View file

@ -937,7 +937,11 @@ so last access time will always be midnight of that day. */)
Lisp_Object dirname;
struct stat sdir;
#endif /* BSD4_2 */
char modes[12];
/* An array to hold the mode string generated by filemodestring,
including its terminating space and null byte. */
char modes[sizeof "-rwxr-xr-x "];
Lisp_Object handler;
struct gcpro gcpro1;
char *uname = NULL, *gname = NULL;