Mercurial > emacs
changeset 83393:38af4e693f4e
Protect keyboard-translate-table from GC.
* src/keyboard.c (mark_kboards): Also mark Vkeyboard_translate_table.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-433
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sat, 29 Oct 2005 11:43:13 +0000 |
parents | 2fdf37d06e0c |
children | 7d093d9d4479 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Fri Oct 28 14:41:54 2005 +0000 +++ b/src/keyboard.c Sat Oct 29 11:43:13 2005 +0000 @@ -11780,6 +11780,7 @@ mark_object (kb->Voverriding_terminal_local_map); mark_object (kb->Vlast_command); mark_object (kb->Vreal_last_command); + mark_object (kb->Vkeyboard_translate_table); mark_object (kb->Vprefix_arg); mark_object (kb->Vlast_prefix_arg); mark_object (kb->kbd_queue);