aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorThéo Zimmermann2020-03-24 09:44:50 +0100
committerThéo Zimmermann2020-03-24 09:44:50 +0100
commit0cc90c16000ba0afbb3ae74ebb022cc04747ee3c (patch)
treefe404d934e3bdeb890ba598095a95037fc6f83bd /doc
parentcee03a5adac70a3fae696b81e2e3827971ee6c99 (diff)
parentf4b9158addf87e48a5287e400a8858406f20655e (diff)
Merge PR #11892: [refman] Fix caching, which was broken by the addition of coq_config
Reviewed-by: Zimmi48
Diffstat (limited to 'doc')
-rw-r--r--doc/sphinx/changes.rst2
-rwxr-xr-xdoc/sphinx/conf.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/sphinx/changes.rst b/doc/sphinx/changes.rst
index a0cf9730a9..f76b60097a 100644
--- a/doc/sphinx/changes.rst
+++ b/doc/sphinx/changes.rst
@@ -4,7 +4,7 @@
Recent changes
--------------
-.. ifconfig:: not coq_config.is_a_released_version
+.. ifconfig:: not is_a_released_version
.. include:: ../unreleased.rst
diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py
index c2c1c68f5c..2ed9ec21b3 100755
--- a/doc/sphinx/conf.py
+++ b/doc/sphinx/conf.py
@@ -100,7 +100,7 @@ def copy_formatspecific_files(app):
def setup(app):
app.connect('builder-inited', copy_formatspecific_files)
- app.add_config_value('coq_config', coq_config, 'env')
+ app.add_config_value('is_a_released_version', coq_config.is_a_released_version, 'env')
# The master toctree document.
# We create this file in `copy_master_doc` above.