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
7147c4a4
Commit
7147c4a4
authored
Jun 12, 2011
by
Paul Eggert
Browse files
* keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
parent
193e32d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
src/ChangeLog
src/ChangeLog
+2
-0
src/keyboard.c
src/keyboard.c
+3
-3
No files found.
src/ChangeLog
View file @
7147c4a4
2011-06-13 Paul Eggert <eggert@cs.ucla.edu>
* keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
* lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
* lread.c (Fload): Don't compare a possibly-garbage time_t value.
...
...
src/keyboard.c
View file @
7147c4a4
...
...
@@ -448,7 +448,7 @@ static Lisp_Object make_lispy_movement (struct frame *, Lisp_Object,
#endif
static Lisp_Object modify_event_symbol (EMACS_INT, unsigned, Lisp_Object,
Lisp_Object, const char *const *,
Lisp_Object *,
unsigned
);
Lisp_Object *,
EMACS_INT
);
static Lisp_Object make_lispy_switch_frame (Lisp_Object);
static int help_char_p (Lisp_Object);
static void save_getcjmp (jmp_buf);
...
...
@@ -5391,7 +5391,7 @@ make_lispy_event (struct input_event *event)
Qfunction_key,
KVAR (current_kboard, Vsystem_key_alist),
0, &KVAR (current_kboard, system_key_syms),
(unsigned) -1
);
TYPE_MAXIMUM (EMACS_INT)
);
}
return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
...
...
@@ -6410,7 +6410,7 @@ reorder_modifiers (Lisp_Object symbol)
static Lisp_Object
modify_event_symbol (EMACS_INT symbol_num, unsigned int modifiers, Lisp_Object symbol_kind,
Lisp_Object name_alist_or_stem, const char *const *name_table,
Lisp_Object *symbol_table,
unsigned int
table_size)
Lisp_Object *symbol_table,
EMACS_INT
table_size)
{
Lisp_Object value;
Lisp_Object symbol_int;
...
...
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