diff options
| author | Nick Roberts | 2007-05-20 05:13:28 +0000 |
|---|---|---|
| committer | Nick Roberts | 2007-05-20 05:13:28 +0000 |
| commit | 7e5a23bd93d600f719b3b6db4cfbb925d7ea8c8f (patch) | |
| tree | dd382d8493d1c892047eaf1ad657be173e691488 /src/sysdep.c | |
| parent | a8099827a4c6c243b57dcfee9d17f3b7475670e4 (diff) | |
| download | emacs-7e5a23bd93d600f719b3b6db4cfbb925d7ea8c8f.tar.gz emacs-7e5a23bd93d600f719b3b6db4cfbb925d7ea8c8f.zip | |
Use HAVE_GPM instead of HAVE_GPM_H.
Diffstat (limited to 'src/sysdep.c')
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 5dd7769ba4d..202cab4abd2 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -1675,14 +1675,14 @@ init_sys_modes () | |||
| 1675 | old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0); | 1675 | old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0); |
| 1676 | fcntl (input_fd, F_SETOWN, getpid ()); | 1676 | fcntl (input_fd, F_SETOWN, getpid ()); |
| 1677 | init_sigio (input_fd); | 1677 | init_sigio (input_fd); |
| 1678 | #ifdef HAVE_GPM_H | 1678 | #ifdef HAVE_GPM |
| 1679 | if (term_gpm) | 1679 | if (term_gpm) |
| 1680 | { | 1680 | { |
| 1681 | fcntl (gpm_fd, F_SETOWN, getpid ()); | 1681 | fcntl (gpm_fd, F_SETOWN, getpid ()); |
| 1682 | fcntl (gpm_fd, F_SETFL, O_NONBLOCK); | 1682 | fcntl (gpm_fd, F_SETFL, O_NONBLOCK); |
| 1683 | init_sigio (gpm_fd); | 1683 | init_sigio (gpm_fd); |
| 1684 | } | 1684 | } |
| 1685 | #endif /* HAVE_GPM_H */ | 1685 | #endif /* HAVE_GPM */ |
| 1686 | } | 1686 | } |
| 1687 | #endif /* F_GETOWN */ | 1687 | #endif /* F_GETOWN */ |
| 1688 | #endif /* F_SETOWN_BUG */ | 1688 | #endif /* F_SETOWN_BUG */ |