From: Carl Worth Date: Tue, 1 Dec 2009 05:46:55 +0000 (-0800) Subject: notmuch.el: Fix notmuch-help to properly display prefixed bindings. X-Git-Tag: 0.1~284 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=f5e125a9c02c0afbe52d0be4033fb46e0d74dfc0;hp=f5e125a9c02c0afbe52d0be4033fb46e0d74dfc0 notmuch.el: Fix notmuch-help to properly display prefixed bindings. Previously, we would do only a single-level traverse of the keymap. That meant that for a keybinding such as "M-TAB" we would just see the prefix key ("ESC") and print that it was a keymap---never printing the TAB nor the documentation for the command it is bound to. Now, we do the full walk, constructing a proper description of the full keybdinding with prefix characters, (and converting "ESC" to "M-" for legibility). ---