Mercurial > emacs
comparison src/dired.c @ 3591:507f64624555
Apply typo patches from Paul Eggert.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 09 Jun 1993 11:59:12 +0000 |
parents | e94a593c3952 |
children | b00953e22dc3 |
comparison
equal
deleted
inserted
replaced
3590:d5f22061277d | 3591:507f64624555 |
---|---|
549 /* perhaps we should set this to most-positive-fixnum if it is too large? */ | 549 /* perhaps we should set this to most-positive-fixnum if it is too large? */ |
550 values[7] = make_number (s.st_size); | 550 values[7] = make_number (s.st_size); |
551 filemodestring (&s, modes); | 551 filemodestring (&s, modes); |
552 values[8] = make_string (modes, 10); | 552 values[8] = make_string (modes, 10); |
553 #ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */ | 553 #ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */ |
554 #define BSD4_2 /* A new meaning to the term `backwards compatability' */ | 554 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
555 #endif | 555 #endif |
556 #ifdef BSD4_2 /* file gid will be dir gid */ | 556 #ifdef BSD4_2 /* file gid will be dir gid */ |
557 dirname = Ffile_name_directory (filename); | 557 dirname = Ffile_name_directory (filename); |
558 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) | 558 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) |
559 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; | 559 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |