comparison src/sysdep.c @ 5046:d4f666cda5e6

some random fixups -------------------- ChangeLog entries follow: -------------------- man/ChangeLog addition: 2010-02-20 Ben Wing <ben@xemacs.org> * internals/internals.texi (Intro to Window and Frame Geometry): Shrink diagram to fit when offset by five spaces as a result of quoting. src/ChangeLog addition: 2010-02-20 Ben Wing <ben@xemacs.org> * syswindows.h: Add table about GNU Emacs -> XEmacs Windows constants from the internals manual. * frame.c: Shrink size of diagram consistent with internals manual. * alloc.c: * compiler.h: * console.c: * events.c: * gc.c (gc_stat_start_new_gc): * gc.c (gc_stat_resume_gc): * gc.c (kkcc_marking): * gc.c (gc_1): * gc.c (gc): * objects-tty.c: * redisplay-msw.c: * redisplay-msw.c (mswindows_clear_region): * syntax.c: * syntax.c (ST_COMMENT_STYLE): * sysdep.c: Fix various compiler warnings.
author Ben Wing <ben@xemacs.org>
date Sat, 20 Feb 2010 03:24:08 -0600
parents 3c3c1d139863
children 308d34e9f07d
comparison
equal deleted inserted replaced
5045:c3cc3fa503a2 5046:d4f666cda5e6
104 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200, 104 0, 50, 75, 110, 135, 150, 200, 300, 600, 1200,
105 1800, 2400, 4800, 9600, 19200, 38400 105 1800, 2400, 4800, 9600, 19200, 38400
106 }; 106 };
107 #endif 107 #endif
108 108
109 #endif
110
111 #ifdef HAVE_TTY
112 #define USED_IF_TTY(decl) decl
113 #else
114 #define USED_IF_TTY(decl) UNUSED (decl)
115 #endif 109 #endif
116 110
117 111
118 /************************************************************************/ 112 /************************************************************************/
119 /* subprocess control */ 113 /* subprocess control */