From: David Bremner Date: Sun, 31 Jul 2022 11:33:18 +0000 (-0300) Subject: doc/elisp: replace label for Emacs commands and key bindings. X-Git-Tag: 0.37_rc0~7 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=b2d07209713cb872117cb7701ac5133bb183744a doc/elisp: replace label for Emacs commands and key bindings. In the notmuch doc index it is important to be clear which parts are Emacs related. --- diff --git a/doc/elisp.py b/doc/elisp.py index 1a96b12a..642ea9ae 100644 --- a/doc/elisp.py +++ b/doc/elisp.py @@ -215,7 +215,7 @@ class EmacsLispFunction(EmacsLispSymbol): class EmacsLispKey(ObjectDescription): """A directive to document interactive commands via their bindings.""" - label = 'Interactive command' + label = 'Emacs command' def handle_signature(self, signature, signode): """Create nodes to ``signode`` for ``signature``. @@ -266,7 +266,7 @@ class EmacsLispKey(ObjectDescription): line=self.lineno) keymap[binding] = self.env.docname - index_text = '{name}; key binding'.format(name=binding) + index_text = '{name}; Emacs key binding'.format(name=binding) self.indexnode['entries'].append( ('pair', index_text, reftarget, '', None))