Improve commentary for a recent change in keyboard.c

* src/keyboard.c (Fset__this_command_keys): Add a comment about
the magic 248 value.  (Bug#25612)
This commit is contained in:
Eli Zaretskii 2017-02-18 12:30:25 +02:00
parent 3ce07b18f9
commit b5ab3a52fc

View file

@ -10020,7 +10020,7 @@ Internal use only. */)
int key0 = SREF (keys, 0);
/* Kludge alert: this makes M-x be in the form expected by
novice.el. Any better ideas? */
novice.el. (248 is \370, a.k.a. "Meta-x".) Any better ideas? */
if (key0 == 248)
add_command_key (make_number ('x' | meta_modifier));
else