summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-08-08 13:49:59 +0200
committerDavid Bremner <david@tethera.net>2020-08-09 21:14:36 -0300
commit254d0f951541b7e347f32127c6b31f342e4016eb (patch)
tree282c6eb784b16c42433af5263b96bc91256d66ec
parent2a0d4c59659276a14b6857699d27453bcbd39c9b (diff)
emacs: Provide 'rstdoc' feature at end of file
Features should nearly always be provided at the very end of their libraries. This feature isn't one of the rare exceptions.
-rw-r--r--emacs/rstdoc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/rstdoc.el b/emacs/rstdoc.el
index 41390bbe..63fa2794 100644
--- a/emacs/rstdoc.el
+++ b/emacs/rstdoc.el
@@ -32,8 +32,6 @@
;;; Code:
-(provide 'rstdoc)
-
(defun rstdoc-batch-extract ()
"Extract docstrings to and from the files on the command line."
(apply #'rstdoc-extract command-line-args-left))
@@ -82,4 +80,6 @@
(replace-match (cdr pair))))
(buffer-substring (point-min) (point-max))))
+(provide 'rstdoc)
+
;;; rstdoc.el ends here