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/keyboard.c | |
| parent | a8099827a4c6c243b57dcfee9d17f3b7475670e4 (diff) | |
| download | emacs-7e5a23bd93d600f719b3b6db4cfbb925d7ea8c8f.tar.gz emacs-7e5a23bd93d600f719b3b6db4cfbb925d7ea8c8f.zip | |
Use HAVE_GPM instead of HAVE_GPM_H.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e56a6904c91..d2e77fd8888 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -6008,7 +6008,7 @@ make_lispy_event (event) | |||
| 6008 | } | 6008 | } |
| 6009 | #endif | 6009 | #endif |
| 6010 | 6010 | ||
| 6011 | #ifdef HAVE_GPM_H | 6011 | #ifdef HAVE_GPM |
| 6012 | case GPM_CLICK_EVENT: | 6012 | case GPM_CLICK_EVENT: |
| 6013 | { | 6013 | { |
| 6014 | FRAME_PTR f = XFRAME (event->frame_or_window); | 6014 | FRAME_PTR f = XFRAME (event->frame_or_window); |
| @@ -6066,7 +6066,7 @@ make_lispy_event (event) | |||
| 6066 | Fcons (position, | 6066 | Fcons (position, |
| 6067 | Qnil)); | 6067 | Qnil)); |
| 6068 | } | 6068 | } |
| 6069 | #endif /* HAVE_GPM_H */ | 6069 | #endif /* HAVE_GPM */ |
| 6070 | 6070 | ||
| 6071 | /* The 'kind' field of the event is something we don't recognize. */ | 6071 | /* The 'kind' field of the event is something we don't recognize. */ |
| 6072 | default: | 6072 | default: |
| @@ -6925,7 +6925,7 @@ read_avail_input (expected) | |||
| 6925 | if (n_to_read == 0) | 6925 | if (n_to_read == 0) |
| 6926 | return 0; | 6926 | return 0; |
| 6927 | #else /* not MSDOS */ | 6927 | #else /* not MSDOS */ |
| 6928 | #ifdef HAVE_GPM_H | 6928 | #ifdef HAVE_GPM |
| 6929 | if (term_gpm) | 6929 | if (term_gpm) |
| 6930 | { | 6930 | { |
| 6931 | Gpm_Event event; | 6931 | Gpm_Event event; |
| @@ -6943,7 +6943,7 @@ read_avail_input (expected) | |||
| 6943 | if (nread) | 6943 | if (nread) |
| 6944 | return nread; | 6944 | return nread; |
| 6945 | } | 6945 | } |
| 6946 | #endif /* HAVE_GPM_H */ | 6946 | #endif /* HAVE_GPM */ |
| 6947 | #ifdef FIONREAD | 6947 | #ifdef FIONREAD |
| 6948 | 6948 | ||
| 6949 | /* Find out how much input is available. */ | 6949 | /* Find out how much input is available. */ |