comparison src/console.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 ae48681c47fa
children 92dc90c0bb40
comparison
equal deleted inserted replaced
5045:c3cc3fa503a2 5046:d4f666cda5e6
1 /* The console object. 1 /* The console object.
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. 2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
3 Copyright (C) 1996, 2002 Ben Wing. 3 Copyright (C) 1996, 2002, 2010 Ben Wing.
4 4
5 This file is part of XEmacs. 5 This file is part of XEmacs.
6 6
7 XEmacs is free software; you can redistribute it and/or modify it 7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the 8 under the terms of the GNU General Public License as published by the
39 #include "window.h" 39 #include "window.h"
40 40
41 #include "console-stream-impl.h" 41 #include "console-stream-impl.h"
42 #ifdef HAVE_TTY 42 #ifdef HAVE_TTY
43 #include "console-tty-impl.h" 43 #include "console-tty-impl.h"
44 #endif
45
46 #ifdef HAVE_TTY
47 #define USED_IF_TTY(decl) decl
48 #else
49 #define USED_IF_TTY(decl) UNUSED (decl)
50 #endif 44 #endif
51 45
52 Lisp_Object Vconsole_list, Vselected_console; 46 Lisp_Object Vconsole_list, Vselected_console;
53 47
54 Lisp_Object Vcreate_console_hook, Vdelete_console_hook; 48 Lisp_Object Vcreate_console_hook, Vdelete_console_hook;