aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKaroly Lorentey2005-01-06 15:00:09 +0000
committerKaroly Lorentey2005-01-06 15:00:09 +0000
commit0feecea9fb7079a2c1fbfee32a992449a22cf478 (patch)
tree0826d68e3dc2ce370c7bd4dae7db3cffc3568321 /lib-src
parent17d51b68fb4e7da4f18eff72c589b7ffc4f9c22c (diff)
parent1a63439b34c3455a317feda5c271dfdb7af0296b (diff)
downloademacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.tar.gz
emacs-0feecea9fb7079a2c1fbfee32a992449a22cf478.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-747 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-748 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-749 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-750 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-751 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-752 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-78 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-79 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-80 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-278
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/make-docfile.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index d913fbaf2c9..92d06473a80 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not
4 defined.
5
12004-12-15 Andreas Schwab <schwab@suse.de> 62004-12-15 Andreas Schwab <schwab@suse.de>
2 7
3 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from 8 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index e502061b759..02ddbabe7a7 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -43,11 +43,11 @@ Boston, MA 02111-1307, USA. */
43#undef chdir 43#undef chdir
44 44
45#include <stdio.h> 45#include <stdio.h>
46#include <stdlib.h>
46#ifdef MSDOS 47#ifdef MSDOS
47#include <fcntl.h> 48#include <fcntl.h>
48#endif /* MSDOS */ 49#endif /* MSDOS */
49#ifdef WINDOWSNT 50#ifdef WINDOWSNT
50#include <stdlib.h>
51#include <fcntl.h> 51#include <fcntl.h>
52#include <direct.h> 52#include <direct.h>
53#endif /* WINDOWSNT */ 53#endif /* WINDOWSNT */