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.
This commit is contained in:
David Bremner 2022-07-31 08:33:18 -03:00
parent 4d367ac0b4
commit b2d0720971

View file

@ -215,7 +215,7 @@ class EmacsLispFunction(EmacsLispSymbol):
class EmacsLispKey(ObjectDescription): class EmacsLispKey(ObjectDescription):
"""A directive to document interactive commands via their bindings.""" """A directive to document interactive commands via their bindings."""
label = 'Interactive command' label = 'Emacs command'
def handle_signature(self, signature, signode): def handle_signature(self, signature, signode):
"""Create nodes to ``signode`` for ``signature``. """Create nodes to ``signode`` for ``signature``.
@ -266,7 +266,7 @@ class EmacsLispKey(ObjectDescription):
line=self.lineno) line=self.lineno)
keymap[binding] = self.env.docname 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( self.indexnode['entries'].append(
('pair', index_text, reftarget, '', None)) ('pair', index_text, reftarget, '', None))