diff options
author | Glenn Morris <rgm@gnu.org> | 2012-04-30 20:45:39 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-04-30 20:45:39 -0700 |
commit | 99cf43f93ba5f0b0ba1f82f76a7151b81fb4d168 (patch) | |
tree | 8b7187a23d7c947ee9d02325ba8923d57b95e8bd /src/syssignal.h | |
parent | 1056cb66e67bccaf3001174d9ef28e962f6b5af1 (diff) | |
download | emacs-99cf43f93ba5f0b0ba1f82f76a7151b81fb4d168.tar.gz |
Remove references to macros that are not defined anywhere
* src/syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
All were removed before 23.1.
Diffstat (limited to 'src/syssignal.h')
-rw-r--r-- | src/syssignal.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/syssignal.h b/src/syssignal.h index 86135d71215..a2522f24429 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -1,5 +1,6 @@ /* syssignal.h - System-dependent definitions for signals. - Copyright (C) 1993, 1999, 2001-2012 Free Software Foundation, Inc. + +Copyright (C) 1993, 1999, 2001-2012 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -82,24 +83,18 @@ void croak (char *) NO_RETURN; #define sigfree() sigsetmask (SIGEMPTYMASK) -#if defined (SIGINFO) && defined (BROKEN_SIGINFO) -#undef SIGINFO -#endif #if defined (SIGIO) && defined (BROKEN_SIGIO) # undef SIGIO #endif +/* Last user: m/ibmrs6000.h */ #if defined (SIGPOLL) && defined (BROKEN_SIGPOLL) #undef SIGPOLL #endif -#if defined (SIGTSTP) && defined (BROKEN_SIGTSTP) -#undef SIGTSTP -#endif -#if defined (SIGURG) && defined (BROKEN_SIGURG) -#undef SIGURG -#endif +/* Last user: m/ibmrs6000.h */ #if defined (SIGAIO) && defined (BROKEN_SIGAIO) #undef SIGAIO #endif +/* Last user: m/ibmrs6000.h */ #if defined (SIGPTY) && defined (BROKEN_SIGPTY) #undef SIGPTY #endif |