diff options
| author | Po Lu | 2021-11-30 08:33:24 +0800 |
|---|---|---|
| committer | Po Lu | 2021-11-30 08:33:24 +0800 |
| commit | 66b5f5a87263030dd4a8d13080dea68afdb6c3e4 (patch) | |
| tree | a451409203ae14e581c2dec3d833a24b35cd668e /src | |
| parent | 194c299470e087aeeff5c496c7dfc6400e1185a7 (diff) | |
| download | emacs-66b5f5a87263030dd4a8d13080dea68afdb6c3e4.tar.gz emacs-66b5f5a87263030dd4a8d13080dea68afdb6c3e4.zip | |
Fix build after merge
* lisp/mwheel.el (mouse-wheel-up-event):
* src/gtkutil.c (xg_event_is_for_scrollbar):
* src/termhooks.h (enum output_method): Fix trivial typos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gtkutil.c | 1 | ||||
| -rw-r--r-- | src/termhooks.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 0574d5691b1..c2b33912efb 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -4793,7 +4793,6 @@ xg_event_is_for_scrollbar (struct frame *f, const EVENT *event) | |||
| 4793 | || event->type == GDK_MOTION_NOTIFY) | 4793 | || event->type == GDK_MOTION_NOTIFY) |
| 4794 | #endif | 4794 | #endif |
| 4795 | ) | 4795 | ) |
| 4796 | || event->type == MotionNotify)) | ||
| 4797 | #endif /* HAVE_XINPUT2 */ | 4796 | #endif /* HAVE_XINPUT2 */ |
| 4798 | { | 4797 | { |
| 4799 | /* If we are releasing or moving the scroll bar, it has the grab. */ | 4798 | /* If we are releasing or moving the scroll bar, it has the grab. */ |
diff --git a/src/termhooks.h b/src/termhooks.h index f0c3ffd57b1..649a4236d20 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -61,7 +61,7 @@ enum output_method | |||
| 61 | output_msdos_raw, | 61 | output_msdos_raw, |
| 62 | output_w32, | 62 | output_w32, |
| 63 | output_ns, | 63 | output_ns, |
| 64 | output_pgtk | 64 | output_pgtk, |
| 65 | output_haiku | 65 | output_haiku |
| 66 | }; | 66 | }; |
| 67 | 67 | ||