* src/dired.c: Add comment and code explaining magic number.
This commit is contained in:
parent
7fe42546dd
commit
4ad8955513
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue