Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0dda8fd8
Commit
0dda8fd8
authored
Apr 03, 2004
by
Stefan Monnier
Browse files
(gdb_use_union, gdb_use_lsb): New vars.
(gdb_emacs_intbits): Remove.
parent
35aeddc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
src/emacs.c
src/emacs.c
+11
-2
No files found.
src/emacs.c
View file @
0dda8fd8
/* Fully extensible Emacs, running on Unix, intended for GNU.
Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,200
3
Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,
03,
200
4
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -86,9 +86,18 @@ extern char *index P_ ((const char *, int));
/* Make these values available in GDB, which doesn't see macros. */
#ifdef USE_LSB_TAG
int
gdb_use_lsb
=
1
;
#else
int
gdb_use_lsb
=
0
;
#endif
#ifdef NO_UNION_TYPE
int
gdb_use_union
=
0
;
#else
int
gdb_use_union
=
1
;
#endif
EMACS_INT
gdb_valbits
=
VALBITS
;
EMACS_INT
gdb_gctypebits
=
GCTYPEBITS
;
EMACS_INT
gdb_emacs_intbits
=
sizeof
(
EMACS_INT
)
*
BITS_PER_CHAR
;
#ifdef DATA_SEG_BITS
EMACS_INT
gdb_data_seg_bits
=
DATA_SEG_BITS
;
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment