X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Frstdoc.el;fp=emacs%2Frstdoc.el;h=92a337c841fad6bbf90ca8d0772c9a00cf65f099;hp=2af91186863db5804f3ebd0ac653fcdfd8c427c0;hb=e63f37a4a90c5d2a399a99a0566b6e1dfea263aa;hpb=c4541353765dec837c1c2f912b1bf6661827429c diff --git a/emacs/rstdoc.el b/emacs/rstdoc.el index 2af91186..92a337c8 100644 --- a/emacs/rstdoc.el +++ b/emacs/rstdoc.el @@ -36,11 +36,11 @@ (provide 'rstdoc) (defun rstdoc-batch-extract () - "Extract docstrings to and from the files on the command line" + "Extract docstrings to and from the files on the command line." (apply #'rstdoc-extract command-line-args-left)) (defun rstdoc-extract (in-file out-file) - "Write docstrings from IN-FILE to OUT-FILE" + "Write docstrings from IN-FILE to OUT-FILE." (load-file in-file) (let* ((definitions (cdr (assoc (expand-file-name in-file) load-history))) (doc-hash (make-hash-table :test 'eq))) @@ -72,7 +72,7 @@ ("\\([^\\]\\)'" . "\\1`") ("^[[:space:]\t]*$" . "|br|") ("^[[:space:]\t]" . "|indent| ")) - "list of (regex . replacement) pairs") + "List of (regex . replacement) pairs.") (defun rstdoc--rst-quote-string (str) (with-temp-buffer