Resources for deferred.el/concurrent.el development

How to build document

Document of deferred.el and concurrent.el are build using Sphinx and sphinxcontrib-emacs. It is available via read the docs.

To build document, you need to install Sphinx and sphinxcontrib-emacs, for example, using pip install:

cd PATH/TO/emacs-deferred
pip install Sphinx
pip install -r doc/requirements.txt

Then, goto doc/ directory and build document:

cd doc/
make html

You have html document in doc/build/html/.

If autodocument does not fetch updated docstrings from *.el files, use make clean html instead.