]> code.delx.au - gnu-emacs/commitdiff
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
authorAndrew Innes <andrewi@gnu.org>
Sun, 6 Feb 2000 23:37:51 +0000 (23:37 +0000)
committerAndrew Innes <andrewi@gnu.org>
Sun, 6 Feb 2000 23:37:51 +0000 (23:37 +0000)
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.

.gitignore
lib-src/.gitignore
lisp/ChangeLog
nt/ChangeLog
src/.gitignore
src/ChangeLog
src/xdisp.c

index ac4cfd775218fee22ab13d84e581ef676b30a497..1445c236082dac768093838cd7c964b5cae3a93c 100644 (file)
@@ -27,3 +27,4 @@ _$*
 core
 # CVS default ignores end
 configure
+bin
index b5eea5caab44074d0a839cc266ef3c84a0f4196d..a8bbe52aa8b919d8de184dde1eec5aa833a63df6 100644 (file)
@@ -15,3 +15,6 @@ etags
 ctags
 emacsclient
 b2m
+DOC
+obj
+obj-spd
index 0b5166ae8c3db9278702ee5d2d208a21f423bdc8..5948451a0867abb260f490ad02d1d6fb3c9d781e 100644 (file)
@@ -1,3 +1,10 @@
+2000-02-06  Andrew Innes  <andrewi@gnu.org>
+
+       * term/w32-win.el (x-handle-args): Comment out call to message,
+       which occurs before window system is initialized.
+
+       * makefile.nt: Add support for recompiling lisp code.
+
 2000-02-04  Dave Love  <fx@gnu.org>
 
        * bindings.el (mode-line-mule-info): Fix/extend last change.
index 6032c6d80c3a45207ee1524932799e1eb0043235..0e499a2638629d375c214cf1de82fa19015e8298 100644 (file)
@@ -1,3 +1,9 @@
+2000-02-06  Andrew Innes  <andrewi@gnu.org>
+
+       * inc/sys/time.h: Add inclusion protection.
+
+       * makefile.def (SYS_LDFLAGS): Add -nologo.
+
 1999-11-22  Andrew Innes  <andrewi@gnu.org>
 
        * install.bat: Pass on command line arguments to make.
index 99af0328a10706498a05a6facc30662194aba6c3..661faaf62a47f9bee56712231e0e81b37ce47047 100644 (file)
@@ -9,3 +9,5 @@ temacs
 emacs
 emacs-*
 *.core
+obj
+obj-spd
index 9bc3d6ab634cd5c5bf3cae223097212ea7068975..0f1696327a7aa3645c4c4712ec9a62e0506465c1 100644 (file)
@@ -1,3 +1,33 @@
+2000-02-06  Andrew Innes  <andrewi@gnu.org>
+
+       * 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.
+
 2000-02-05  INOUE Seiichiro <inoue@ainet.or.jp>
 
        * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
index e6c304501edd59f90f078cd6345e1621fe67d17d..7a3f25c5494df1f24c6e611df446baf167fe9e63 100644 (file)
@@ -190,6 +190,9 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
+#ifdef WINDOWSNT
+#include "w32term.h"
+#endif
 
 #define min(a, b) ((a) < (b) ? (a) : (b))
 #define max(a, b) ((a) > (b) ? (a) : (b))