From: Eli Zaretskii Date: Sat, 18 Feb 2017 10:30:25 +0000 (+0200) Subject: Improve commentary for a recent change in keyboard.c X-Git-Tag: emacs-26.0.90~795 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5ab3a52fc0c8fd54b1827b354b13d9093411c89;p=emacs.git 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) --- diff --git a/src/keyboard.c b/src/keyboard.c index d2f4b504abf..0245dfa9759 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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