Skip to content

Commit

Permalink
(modify_event_symbol): Add properly to *symbol_table.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard M. Stallman committed Jun 27, 1996
1 parent 154e475 commit 5a8fc2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keyboard.c
Expand Up @@ -4485,7 +4485,7 @@ modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
}

if (CONSP (*symbol_table))
*symbol_table = Fcons (value, *symbol_table);
*symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
else
XVECTOR (*symbol_table)->contents[symbol_num] = value;

Expand Down

0 comments on commit 5a8fc2f

Please sign in to comment.