diff options
| author | Paul Eggert | 2011-02-20 09:14:24 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-20 09:14:24 -0800 |
| commit | d209feedbdbd88aff5479303fdca7f69d6dded27 (patch) | |
| tree | 247b5d57bc0d7ba7248d35c7f4e136dc15d6a21d | |
| parent | cfd812fa0392942aaaa496fa0b8592a9357669b8 (diff) | |
| download | emacs-d209feedbdbd88aff5479303fdca7f69d6dded27.tar.gz emacs-d209feedbdbd88aff5479303fdca7f69d6dded27.zip | |
* dired.c: Include <filemode.h> at top level.
| -rw-r--r-- | src/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c index e2f974e1bf0..b01ce8d4d8f 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -54,8 +54,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 54 | #include <sys/dir.h> | 54 | #include <sys/dir.h> |
| 55 | #include <sys/stat.h> | 55 | #include <sys/stat.h> |
| 56 | 56 | ||
| 57 | #include <filemode.h> | ||
| 58 | |||
| 59 | #define DIRENTRY struct direct | 57 | #define DIRENTRY struct direct |
| 60 | 58 | ||
| 61 | extern DIR *opendir (char *); | 59 | extern DIR *opendir (char *); |
| @@ -63,6 +61,8 @@ extern struct direct *readdir (DIR *); | |||
| 63 | 61 | ||
| 64 | #endif /* HAVE_DIRENT_H */ | 62 | #endif /* HAVE_DIRENT_H */ |
| 65 | 63 | ||
| 64 | #include <filemode.h> | ||
| 65 | |||
| 66 | #ifdef MSDOS | 66 | #ifdef MSDOS |
| 67 | #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0) | 67 | #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0) |
| 68 | #else | 68 | #else |