emacs/rstdoc: escape '*'

This is just a regular character in docstrings (as it is fairly often
used in lisp identifiers and buffer names) but is the start of
emphasis in rst. This change is needed to quell a noisy warning when
including notmuch-tree.rsti
This commit is contained in:
David Bremner 2021-08-21 20:51:07 -07:00
parent 731697d671
commit 8c4f38092a

View file

@ -71,6 +71,7 @@
("`" . "\\\\`")
("\001" . "'")
("\002" . "`")
("[*]" . "\\\\*")
("^[[:space:]]*$" . "|br|")
("^[[:space:]]" . "|indent| "))
"list of (regex . replacement) pairs")