diff options
| author | Richard M. Stallman | 1993-11-26 10:40:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-26 10:40:27 +0000 |
| commit | 1db6401ccd927e360dc5fc4376a6c7b547dfd4d8 (patch) | |
| tree | 58defc5085273232e33145b5c31115bca7d104f8 /src/sysdep.c | |
| parent | 6daed836c4331d1e42ac08592e5902d6f7bf325b (diff) | |
| download | emacs-1db6401ccd927e360dc5fc4376a6c7b547dfd4d8.tar.gz emacs-1db6401ccd927e360dc5fc4376a6c7b547dfd4d8.zip | |
(closedir): Test BROKEN_CLOSEDIR, not INTERRUPTIBLE_CLOSE.
Diffstat (limited to 'src/sysdep.c')
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 94e58a354cb..83c6d84fd54 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -2989,7 +2989,7 @@ char *sys_siglist[NSIG + 1] = | |||
| 2989 | 2989 | ||
| 2990 | #include <dirent.h> | 2990 | #include <dirent.h> |
| 2991 | 2991 | ||
| 2992 | #if defined(INTERRUPTIBLE_CLOSE) || !defined(HAVE_CLOSEDIR) | 2992 | #if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR) |
| 2993 | 2993 | ||
| 2994 | int | 2994 | int |
| 2995 | closedir (dirp) | 2995 | closedir (dirp) |
| @@ -3009,7 +3009,7 @@ closedir (dirp) | |||
| 3009 | 3009 | ||
| 3010 | return rtnval; | 3010 | return rtnval; |
| 3011 | } | 3011 | } |
| 3012 | #endif /* INTERRUPTIBLE_CLOSE or not HAVE_CLOSEDIR */ | 3012 | #endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */ |
| 3013 | #endif /* SYSV_SYSTEM_DIR */ | 3013 | #endif /* SYSV_SYSTEM_DIR */ |
| 3014 | 3014 | ||
| 3015 | #ifdef NONSYSTEM_DIR_LIBRARY | 3015 | #ifdef NONSYSTEM_DIR_LIBRARY |