summaryrefslogtreecommitdiffstats
path: root/Help/manual/cmake-language.7.rst
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-02-10 14:55:46 (GMT)
committerBrad King <brad.king@kitware.com>2017-02-10 15:43:30 (GMT)
commit30abf145fd48f50c26ee7553fd2512e59be97f25 (patch)
treec81d6e73ce733dc7043f773e426b6ed4bee073d5 /Help/manual/cmake-language.7.rst
parent97917900d146acd55a7e453f477c52cd2e816eb3 (diff)
downloadCMake-30abf145fd48f50c26ee7553fd2512e59be97f25.zip
CMake-30abf145fd48f50c26ee7553fd2512e59be97f25.tar.gz
CMake-30abf145fd48f50c26ee7553fd2512e59be97f25.tar.bz2
Help: Fix cmake code block warnings produced by Sphinx 1.4
Some of our "cmake" code blocks do not use fully valid CMake syntax because they have placeholders for human reference. Sphinx has never been able to properly lex and highlight these, but now warns. Fix each block's syntax or change to a non-cmake block as appropriate.
Diffstat (limited to 'Help/manual/cmake-language.7.rst')
-rw-r--r--Help/manual/cmake-language.7.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/manual/cmake-language.7.rst b/Help/manual/cmake-language.7.rst
index 41542c9..ba0b30f 100644
--- a/Help/manual/cmake-language.7.rst
+++ b/Help/manual/cmake-language.7.rst
@@ -255,7 +255,7 @@ invocation as exactly one argument.
For example:
-.. code-block:: cmake
+::
message("This is a quoted argument containing multiple lines.
This is always one argument even though it contains a ; character.
@@ -421,7 +421,7 @@ A ``#`` immediately followed by a `Bracket Argument`_ forms a
For example:
-.. code-block:: cmake
+::
#[[This is a bracket comment.
It runs until the close bracket.]]