aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2017-02-18 12:30:25 +0200
committerEli Zaretskii2017-02-18 12:30:25 +0200
commitb5ab3a52fc0c8fd54b1827b354b13d9093411c89 (patch)
tree288dfd8c4c14f830652e264e9e2a018a6ada3ce1
parent3ce07b18f9a65f961ce959b5af32d05714f5a802 (diff)
downloademacs-b5ab3a52fc0c8fd54b1827b354b13d9093411c89.tar.gz
emacs-b5ab3a52fc0c8fd54b1827b354b13d9093411c89.zip
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)
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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. */)
10020 int key0 = SREF (keys, 0); 10020 int key0 = SREF (keys, 0);
10021 10021
10022 /* Kludge alert: this makes M-x be in the form expected by 10022 /* Kludge alert: this makes M-x be in the form expected by
10023 novice.el. Any better ideas? */ 10023 novice.el. (248 is \370, a.k.a. "Meta-x".) Any better ideas? */
10024 if (key0 == 248) 10024 if (key0 == 248)
10025 add_command_key (make_number ('x' | meta_modifier)); 10025 add_command_key (make_number ('x' | meta_modifier));
10026 else 10026 else