From ccf2576081dbd629765214493d08c58e28ee23dc Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 9 Nov 2020 22:23:04 +0100 Subject: [PATCH] Fix mistake in describe-buffer-bindings * src/keymap.c (Fdescribe_buffer_bindings): Fix a call in describe-buffer-bindings. This fixes a mistake in my previous commit to prefer the Lisp version of describe-map-tree (8a1441310aa1), where 0 was accidentally converted to Qt in two places. --- src/keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keymap.c b/src/keymap.c index e5b4781076f..181dcdad3ad 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -2926,7 +2926,7 @@ You type Translation\n\ CALLN (Ffuncall, Qdescribe_map_tree, KVAR (current_kboard, Vlocal_function_key_map), Qnil, Qnil, prefix, - msg, nomenu, Qt, Qt, Qt); + msg, nomenu, Qt, Qnil, Qnil); } /* Print the input-decode-map translations under this prefix. */ -- 2.39.2