comparison src/xdisp.c @ 27634:6c9ee29e8955

* 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.
author Andrew Innes <andrewi@gnu.org>
date Sun, 06 Feb 2000 23:37:51 +0000
parents d26783d86d5f
children 2e811e86c10b
comparison
equal deleted inserted replaced
27633:ab6c81c6edf8 27634:6c9ee29e8955
187 #include "process.h" 187 #include "process.h"
188 #include "region-cache.h" 188 #include "region-cache.h"
189 189
190 #ifdef HAVE_X_WINDOWS 190 #ifdef HAVE_X_WINDOWS
191 #include "xterm.h" 191 #include "xterm.h"
192 #endif
193 #ifdef WINDOWSNT
194 #include "w32term.h"
192 #endif 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))
196 199