]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (read_decoded_event_from_main_queue): Fix paren typo
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Jun 2021 15:57:57 +0000 (11:57 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Jun 2021 15:57:57 +0000 (11:57 -0400)
src/keyboard.c

index c63826e34d1786386eab72db0855b9b340a1c77a..051f2f8b38a6f630c94c3f630c9d7975303c411f 100644 (file)
@@ -2262,7 +2262,7 @@ read_decoded_event_from_main_queue (struct timespec *end_time,
                            (meta_key == 3 && c < 0x100 && (c & 0x80))
                            ? meta_modifier
                            : 0;
-                         events[i] = make_fixnum ((c & ~0x80) | modifier;
+                         events[i] = make_fixnum ((c & ~0x80) | modifier);
                        }
                    }
                }