comparison src/emacs.c @ 83091:7f60e040ccfc

Merged in changes from CVS HEAD Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-177 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-178 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-179 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-180 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-131
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 03 Apr 2004 20:24:17 +0000
parents 3af83746f912 d57cf5187262
children 46882e012e30
comparison
equal deleted inserted replaced
83090:72c2a3eb27da 83091:7f60e040ccfc
1 /* Fully extensible Emacs, running on Unix, intended for GNU. 1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,2003 2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,03,2004
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5 This file is part of GNU Emacs. 5 This file is part of GNU Emacs.
6 6
7 GNU Emacs is free software; you can redistribute it and/or modify 7 GNU Emacs is free software; you can redistribute it and/or modify
85 extern char *index P_ ((const char *, int)); 85 extern char *index P_ ((const char *, int));
86 #endif 86 #endif
87 87
88 /* Make these values available in GDB, which doesn't see macros. */ 88 /* Make these values available in GDB, which doesn't see macros. */
89 89
90 #ifdef USE_LSB_TAG
91 int gdb_use_lsb = 1;
92 #else
93 int gdb_use_lsb = 0;
94 #endif
95 #ifdef NO_UNION_TYPE
96 int gdb_use_union = 0;
97 #else
98 int gdb_use_union = 1;
99 #endif
90 EMACS_INT gdb_valbits = VALBITS; 100 EMACS_INT gdb_valbits = VALBITS;
91 EMACS_INT gdb_gctypebits = GCTYPEBITS; 101 EMACS_INT gdb_gctypebits = GCTYPEBITS;
92 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
93 #ifdef DATA_SEG_BITS 102 #ifdef DATA_SEG_BITS
94 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; 103 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
95 #else 104 #else
96 EMACS_INT gdb_data_seg_bits = 0; 105 EMACS_INT gdb_data_seg_bits = 0;
97 #endif 106 #endif