Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
15fdc2e3
Commit
15fdc2e3
authored
Feb 20, 2002
by
Kim F. Storm
Browse files
(kbd_buffer_get_event) [WINDOWSNT]: Corrected
composing of language-change event.
parent
52254d1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/keyboard.c
src/keyboard.c
+1
-1
No files found.
src/ChangeLog
View file @
15fdc2e3
2002-02-20 Kim F. Storm <storm@cua.dk>
* keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Corrected
composing of language-change event.
2002-02-20 Kim F. Storm <storm@cua.dk>
* keyboard.c (menu_bar_items): Don't include keymap or local-map
...
...
src/keyboard.c
View file @
15fdc2e3
...
...
@@ -3721,7 +3721,7 @@ kbd_buffer_get_event (kbp, used_mouse_menu)
{
/* Make an event (language-change (FRAME CHARSET LCID)). */
obj = Fcons (event->modifiers, Qnil);
obj = Fcons (event->code,
Qnil
);
obj = Fcons (event->code,
obj
);
obj = Fcons (event->frame_or_window, obj);
obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
kbd_fetch_ptr = event + 1;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment