diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2020-08-08 13:49:59 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-08-09 21:14:36 -0300 |
| commit | 254d0f951541b7e347f32127c6b31f342e4016eb (patch) | |
| tree | 282c6eb784b16c42433af5263b96bc91256d66ec | |
| parent | 2a0d4c59659276a14b6857699d27453bcbd39c9b (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.el | 4 |
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 |
