aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog14
-rw-r--r--lib-src/makefile.w32-in2
-rw-r--r--lib-src/ntlib.h2
3 files changed, 17 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index aa9d3fe7fc6..ff62d4fc343 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,17 @@
12005-06-13 Eli Zaretskii <eliz@gnu.org>
2
3 * makefile.w32-in ($(DOC)): Fix last change.
4
52005-06-12 Eli Zaretskii <eliz@gnu.org>
6
7 * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
8 temacs.exe, and the preloaded *.elc files. This avoids
9 unnecessary dumping and DOC rebuilding.
10
112005-06-04 Eli Zaretskii <eliz@gnu.org>
12
13 * ntlib.h (fileno): Don't define if already defined.
14
12005-05-25 Thien-Thi Nguyen <ttn@gnu.org> 152005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
2 16
3 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found. 17 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index 0f806912be5..fbb5559fd80 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -248,7 +248,7 @@ lisp2 = \
248 248
249 249
250DOC = DOC 250DOC = DOC
251$(DOC): make-docfile 251$(DOC): $(BLD) $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2)
252 - $(DEL) $(DOC) 252 - $(DEL) $(DOC)
253 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj) 253 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
254 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1) 254 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h
index 523e3d6fd49..4dd9cae9796 100644
--- a/lib-src/ntlib.h
+++ b/lib-src/ntlib.h
@@ -90,7 +90,9 @@ int fchown (int fd, int uid, int gid);
90#define fcloseall _fcloseall 90#define fcloseall _fcloseall
91#define fdopen _fdopen 91#define fdopen _fdopen
92#define fgetchar _fgetchar 92#define fgetchar _fgetchar
93#ifndef fileno
93#define fileno _fileno 94#define fileno _fileno
95#endif
94#define flushall _flushall 96#define flushall _flushall
95#define fputchar _fputchar 97#define fputchar _fputchar
96#define getcwd _getcwd 98#define getcwd _getcwd