aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2012-04-30 20:45:39 -0700
committerGlenn Morris2012-04-30 20:45:39 -0700
commit99cf43f93ba5f0b0ba1f82f76a7151b81fb4d168 (patch)
tree8b7187a23d7c947ee9d02325ba8923d57b95e8bd /src
parent1056cb66e67bccaf3001174d9ef28e962f6b5af1 (diff)
downloademacs-99cf43f93ba5f0b0ba1f82f76a7151b81fb4d168.tar.gz
emacs-99cf43f93ba5f0b0ba1f82f76a7151b81fb4d168.zip
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')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/syssignal.h15
2 files changed, 10 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c02d919a2e2..0e17d5dd345 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12012-05-01 Glenn Morris <rgm@gnu.org> 12012-05-01 Glenn Morris <rgm@gnu.org>
2 2
3 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
4 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
5 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
6 All were removed before 23.1.
7
3 * dispnew.c: Remove HAVE_LIBNCURSES test; 8 * dispnew.c: Remove HAVE_LIBNCURSES test;
4 it is always true on relevant platforms. 9 it is always true on relevant platforms.
5 10
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 @@
1/* syssignal.h - System-dependent definitions for signals. 1/* syssignal.h - System-dependent definitions for signals.
2 Copyright (C) 1993, 1999, 2001-2012 Free Software Foundation, Inc. 2
3Copyright (C) 1993, 1999, 2001-2012 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
@@ -82,24 +83,18 @@ void croak (char *) NO_RETURN;
82 83
83#define sigfree() sigsetmask (SIGEMPTYMASK) 84#define sigfree() sigsetmask (SIGEMPTYMASK)
84 85
85#if defined (SIGINFO) && defined (BROKEN_SIGINFO)
86#undef SIGINFO
87#endif
88#if defined (SIGIO) && defined (BROKEN_SIGIO) 86#if defined (SIGIO) && defined (BROKEN_SIGIO)
89# undef SIGIO 87# undef SIGIO
90#endif 88#endif
89/* Last user: m/ibmrs6000.h */
91#if defined (SIGPOLL) && defined (BROKEN_SIGPOLL) 90#if defined (SIGPOLL) && defined (BROKEN_SIGPOLL)
92#undef SIGPOLL 91#undef SIGPOLL
93#endif 92#endif
94#if defined (SIGTSTP) && defined (BROKEN_SIGTSTP) 93/* Last user: m/ibmrs6000.h */
95#undef SIGTSTP
96#endif
97#if defined (SIGURG) && defined (BROKEN_SIGURG)
98#undef SIGURG
99#endif
100#if defined (SIGAIO) && defined (BROKEN_SIGAIO) 94#if defined (SIGAIO) && defined (BROKEN_SIGAIO)
101#undef SIGAIO 95#undef SIGAIO
102#endif 96#endif
97/* Last user: m/ibmrs6000.h */
103#if defined (SIGPTY) && defined (BROKEN_SIGPTY) 98#if defined (SIGPTY) && defined (BROKEN_SIGPTY)
104#undef SIGPTY 99#undef SIGPTY
105#endif 100#endif