aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes2000-02-06 23:37:51 +0000
committerAndrew Innes2000-02-06 23:37:51 +0000
commita75dfea0a58a9023386252bd94cb68481261bac5 (patch)
treed18f7e91f0db6f0670dffff8eac6864c9a0728b1
parent8f23f280539076bf81fef5b7cbea963050715db0 (diff)
downloademacs-a75dfea0a58a9023386252bd94cb68481261bac5.tar.gz
emacs-a75dfea0a58a9023386252bd94cb68481261bac5.zip
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
around image definitions and prototypes. (gamma_correct) [WINDOWSNT]: New prototype. * w32term.c (x_make_frame_visible): Replace call to input_poll_signal with poll_for_input. * window.c [WINDOWSNT]: Include w32term.h. * xdisp.c [WINDOWSNT]: Include w32term.h. * makefile.nt: Add dependencies on w32gui.h. (OBJ1): Include atimer.obj. ($(BLD)\atimer.obj): New dependency rule. * w32.c (sigmask): New function (does nothing). (sigunblock): Ditto. * frame.c [WINDOWSNT]: Include w32term.h. * w32gui.h (struct W32FontStruct): Add ascent and descent slots. * lread.c (syms_of_lread): Fix literal newlines. * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around the string constant limit (2048 bytes) in MSVC. (main): Ditto.
-rw-r--r--.gitignore1
-rw-r--r--lib-src/.gitignore3
-rw-r--r--lisp/ChangeLog7
-rw-r--r--nt/ChangeLog6
-rw-r--r--src/.gitignore2
-rw-r--r--src/ChangeLog30
-rw-r--r--src/xdisp.c3
7 files changed, 52 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ac4cfd77521..1445c236082 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,4 @@ _$*
27core 27core
28# CVS default ignores end 28# CVS default ignores end
29configure 29configure
30bin
diff --git a/lib-src/.gitignore b/lib-src/.gitignore
index b5eea5caab4..a8bbe52aa8b 100644
--- a/lib-src/.gitignore
+++ b/lib-src/.gitignore
@@ -15,3 +15,6 @@ etags
15ctags 15ctags
16emacsclient 16emacsclient
17b2m 17b2m
18DOC
19obj
20obj-spd
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0b5166ae8c3..5948451a086 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12000-02-06 Andrew Innes <andrewi@gnu.org>
2
3 * term/w32-win.el (x-handle-args): Comment out call to message,
4 which occurs before window system is initialized.
5
6 * makefile.nt: Add support for recompiling lisp code.
7
12000-02-04 Dave Love <fx@gnu.org> 82000-02-04 Dave Love <fx@gnu.org>
2 9
3 * bindings.el (mode-line-mule-info): Fix/extend last change. 10 * bindings.el (mode-line-mule-info): Fix/extend last change.
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 6032c6d80c3..0e499a26386 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,9 @@
12000-02-06 Andrew Innes <andrewi@gnu.org>
2
3 * inc/sys/time.h: Add inclusion protection.
4
5 * makefile.def (SYS_LDFLAGS): Add -nologo.
6
11999-11-22 Andrew Innes <andrewi@gnu.org> 71999-11-22 Andrew Innes <andrewi@gnu.org>
2 8
3 * install.bat: Pass on command line arguments to make. 9 * install.bat: Pass on command line arguments to make.
diff --git a/src/.gitignore b/src/.gitignore
index 99af0328a10..661faaf62a4 100644
--- a/src/.gitignore
+++ b/src/.gitignore
@@ -9,3 +9,5 @@ temacs
9emacs 9emacs
10emacs-* 10emacs-*
11*.core 11*.core
12obj
13obj-spd
diff --git a/src/ChangeLog b/src/ChangeLog
index 9bc3d6ab634..0f1696327a7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,33 @@
12000-02-06 Andrew Innes <andrewi@gnu.org>
2
3 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
4 around image definitions and prototypes.
5 (gamma_correct) [WINDOWSNT]: New prototype.
6
7 * w32term.c (x_make_frame_visible): Replace call to
8 input_poll_signal with poll_for_input.
9
10 * window.c [WINDOWSNT]: Include w32term.h.
11
12 * xdisp.c [WINDOWSNT]: Include w32term.h.
13
14 * makefile.nt: Add dependencies on w32gui.h.
15 (OBJ1): Include atimer.obj.
16 ($(BLD)\atimer.obj): New dependency rule.
17
18 * w32.c (sigmask): New function (does nothing).
19 (sigunblock): Ditto.
20
21 * frame.c [WINDOWSNT]: Include w32term.h.
22
23 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
24
25 * lread.c (syms_of_lread): Fix literal newlines.
26
27 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
28 the string constant limit (2048 bytes) in MSVC.
29 (main): Ditto.
30
12000-02-05 INOUE Seiichiro <inoue@ainet.or.jp> 312000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
2 32
3 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit 33 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
diff --git a/src/xdisp.c b/src/xdisp.c
index e6c304501ed..7a3f25c5494 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -190,6 +190,9 @@ Boston, MA 02111-1307, USA. */
190#ifdef HAVE_X_WINDOWS 190#ifdef HAVE_X_WINDOWS
191#include "xterm.h" 191#include "xterm.h"
192#endif 192#endif
193#ifdef WINDOWSNT
194#include "w32term.h"
195#endif
193 196
194#define min(a, b) ((a) < (b) ? (a) : (b)) 197#define min(a, b) ((a) < (b) ? (a) : (b))
195#define max(a, b) ((a) > (b) ? (a) : (b)) 198#define max(a, b) ((a) > (b) ? (a) : (b))