summaryrefslogtreecommitdiff
path: root/doc/hacking_on_cider.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/hacking_on_cider.md')
-rw-r--r--doc/hacking_on_cider.md14
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/hacking_on_cider.md b/doc/hacking_on_cider.md
index 8fd064f5..f260f519 100644
--- a/doc/hacking_on_cider.md
+++ b/doc/hacking_on_cider.md
@@ -17,11 +17,15 @@ in advance).
Additionally you will have to generate and require the
[autoloads](https://www.gnu.org/software/emacs/manual/html_node/elisp/Autoload.html),
-otherwise you'll keep getting errors about missing commands.
-That's done automatically when installing via `package.el`, but you'll
-have to do manually with `M-x update-directory-autoloads`. The
-function will prompt for saving a file, let's call it
-`cider-autoloads.el` that you will then need to require.
+otherwise you'll keep getting errors about missing commands. That's done
+automatically when installing via `package.el` but you'll have to do it
+manually in this case:
+
+```shell
+make autoloads # generates cider-autoloads.el
+```
+
+Then:
```el
;; load CIDER from its source code