aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/s/msdos.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 29a213a1e09..b49b7a2d3f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12011-02-26 Eli Zaretskii <eliz@gnu.org>
2
3 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
4 (lstat): Define for DJGPP < 2.04.
5
12011-02-25 Paul Eggert <eggert@cs.ucla.edu> 62011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12 8 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
diff --git a/src/s/msdos.h b/src/s/msdos.h
index 8debd28dccb..29ca0629899 100644
--- a/src/s/msdos.h
+++ b/src/s/msdos.h
@@ -80,6 +80,12 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */
80 strtold, so use _strtold in all versions. */ 80 strtold, so use _strtold in all versions. */
81#define strtold _strtold 81#define strtold _strtold
82 82
83#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3
84# define HAVE_LSTAT 1
85#else
86# define lstat stat
87#endif
88
83/* End of gnulib-related stuff. */ 89/* End of gnulib-related stuff. */
84 90
85/* When $TERM is "internal" then this is substituted: */ 91/* When $TERM is "internal" then this is substituted: */