Skip to content

Commit

Permalink
Documentation/sphinx: fix primary_domain configuration
Browse files Browse the repository at this point in the history
With Sphinx 1.5.3 I get the warning:

	WARNING: primary_domain 'C' not found, ignored.

It seems that domain names in Sphinx are case-sensitive and for the C
domain the name must be lower case.

Signed-off-by: John Keeping <john@metanate.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
  • Loading branch information
johnkeeping authored and Jonathan Corbet committed Mar 3, 2017
1 parent f3fc83e commit fd5d666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False

primary_domain = 'C'
primary_domain = 'c'
highlight_language = 'none'

# -- Options for HTML output ----------------------------------------------
Expand Down

0 comments on commit fd5d666

Please sign in to comment.