projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e490ffc
)
* src/keyboard.c (read_decoded_event_from_main_queue): Fix paren typo
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 5 Jun 2021 15:57:57 +0000
(11:57 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Sat, 5 Jun 2021 15:57:57 +0000
(11:57 -0400)
src/keyboard.c
patch
|
blob
|
history
diff --git
a/src/keyboard.c
b/src/keyboard.c
index c63826e34d1786386eab72db0855b9b340a1c77a..051f2f8b38a6f630c94c3f630c9d7975303c411f 100644
(file)
--- a/
src/keyboard.c
+++ b/
src/keyboard.c
@@
-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
)
;
}
}
}