From: Stefan Kangas Date: Mon, 9 Nov 2020 21:23:04 +0000 (+0100) Subject: Fix mistake in describe-buffer-bindings X-Git-Tag: emacs-28.0.90~5181 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ccf2576081dbd629765214493d08c58e28ee23dc;p=emacs.git 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. --- 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. */