diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-11-16 19:58:30 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-11-16 19:58:30 -0800 |
commit | 0f679e866c6aaf8cebd9291bd715bc99eea511ae (patch) | |
tree | 6a2f01e960e6f8b985e738d2dc2d2b020e0ce003 /src/lisp.h | |
parent | 7e26a6c339371c348dfda84ea7314c2148572b09 (diff) | |
download | emacs-0f679e866c6aaf8cebd9291bd715bc99eea511ae.tar.gz |
* configure.ac (DEBUGGER_SEES_C_MACROS): Remove.
* src/lisp.h (DEBUGGER_SEES_C_MACROS): Likewise.
It apparently doesn't work for GCC 3, and I suppose it's more
trouble than it's worth to worry about this.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lisp.h b/src/lisp.h index 50b0f75c471..926b83d7ce0 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -45,14 +45,7 @@ INLINE_HEADER_BEGIN definitions visible to the debugger. It's used for symbols that .gdbinit needs, symbols whose values may not fit in 'int' (where an enum would suffice). */ -#if defined DEBUGGER_SEES_C_MACROS && defined __GNUC__ -/* GCC versions before 3.5 have unreliable support for C macros in - debug info. */ -# if __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 5) -# undef DEBUGGER_SEES_C_MACROS -# endif -#endif -#if defined MAIN_PROGRAM && !defined DEBUGGER_SEES_C_MACROS +#if defined MAIN_PROGRAM # define DEFINE_GDB_SYMBOL_BEGIN(type, id) type const id EXTERNALLY_VISIBLE # define DEFINE_GDB_SYMBOL_END(id) = id; #else |