diff options
| author | Thien-Thi Nguyen | 2004-05-02 16:01:50 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-05-02 16:01:50 +0000 |
| commit | 2b98b08872a54c23924048e8d1c76335b1c39c7a (patch) | |
| tree | 6e673250da2bd89ae4c00f23d7ece2ef82860324 /src | |
| parent | cf8f099f0a318f7888d9a99b4db820bb6bd6471a (diff) | |
| download | emacs-2b98b08872a54c23924048e8d1c76335b1c39c7a.tar.gz emacs-2b98b08872a54c23924048e8d1c76335b1c39c7a.zip | |
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/syssignal.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4e019bf5280..d52a53852f1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-05-02 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'. | ||
| 4 | |||
| 1 | 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * xdisp.c (calc_line_height_property): YAILOM (yet another | 7 | * xdisp.c (calc_line_height_property): YAILOM (yet another |
diff --git a/src/syssignal.h b/src/syssignal.h index 2b536758e27..cef71f7459a 100644 --- a/src/syssignal.h +++ b/src/syssignal.h | |||
| @@ -18,6 +18,8 @@ along with GNU Emacs; see the file COPYING. If not, write to | |||
| 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 19 | Boston, MA 02111-1307, USA. */ | 19 | Boston, MA 02111-1307, USA. */ |
| 20 | 20 | ||
| 21 | extern void init_signals P_ ((void)); | ||
| 22 | |||
| 21 | #ifdef POSIX_SIGNALS | 23 | #ifdef POSIX_SIGNALS |
| 22 | 24 | ||
| 23 | /* Don't #include <signal.h>. That header should always be #included | 25 | /* Don't #include <signal.h>. That header should always be #included |
| @@ -31,7 +33,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 31 | #define SIGEMPTYMASK (empty_mask) | 33 | #define SIGEMPTYMASK (empty_mask) |
| 32 | #define SIGFULLMASK (full_mask) | 34 | #define SIGFULLMASK (full_mask) |
| 33 | extern sigset_t empty_mask, full_mask; | 35 | extern sigset_t empty_mask, full_mask; |
| 34 | extern void init_signals P_ ((void)); | ||
| 35 | 36 | ||
| 36 | /* POSIX pretty much destroys any possibility of writing sigmask as a | 37 | /* POSIX pretty much destroys any possibility of writing sigmask as a |
| 37 | macro in standard C. We always define our own version because the | 38 | macro in standard C. We always define our own version because the |