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
2ff6714d
Commit
2ff6714d
authored
Dec 19, 1996
by
Richard M. Stallman
Browse files
(modify_event_symbol):
Don't index thru name_table if it is null.
parent
370e3d9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/keyboard.c
src/keyboard.c
+1
-1
No files found.
src/keyboard.c
View file @
2ff6714d
...
...
@@ -4463,7 +4463,7 @@ modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
/* No; let's create it. */
if (!NILP (name_alist))
value = Fcdr_safe (Fassq (symbol_int, name_alist));
else if (name_table[symbol_num])
else if (name_table
!= 0 && name_table
[symbol_num])
value = intern (name_table[symbol_num]);
#ifdef HAVE_WINDOW_SYSTEM
...
...
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