do not execute it; call disabled-command-function's value instead. */
Lisp_Object Qdisabled, Qdisabled_command_function;
-#define NUM_RECENT_KEYS (100)
+#define NUM_RECENT_KEYS (300)
int recent_keys_index; /* Index for storing next element into recent_keys */
int total_keys; /* Total number of elements stored into recent_keys */
-Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
+Lisp_Object recent_keys; /* Vector holds the last NUM_RECENT_KEYS keystrokes */
/* Vector holding the key sequence that invoked the current command.
It is reused for each command, and it may be longer than the current
}
DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
- doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
+ doc: /* Return vector of last 300 events, not counting those from keyboard macros. */)
()
{
Lisp_Object *keys = XVECTOR (recent_keys)->contents;