aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2020-01-20 15:04:16 -0500
committerXavier Claessens <xclaesse@gmail.com>2020-01-26 07:51:16 -0500
commitb74ece344fe6d40e1040670a12be1dde3adb71b2 (patch)
tree4a884bc30f7b91437066390139e242922be35322 /docs
parentdbad64cf34ba43b24dc2d71bd260f137acc37ea5 (diff)
downloadmeson-b74ece344fe6d40e1040670a12be1dde3adb71b2.zip
meson-b74ece344fe6d40e1040670a12be1dde3adb71b2.tar.gz
meson-b74ece344fe6d40e1040670a12be1dde3adb71b2.tar.bz2
Support multiple args to message() and warning()
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-manual.md6
-rw-r--r--docs/markdown/snippets/message_warning_concat.md4
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index 57e2bc1..6699d75 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -1195,6 +1195,9 @@ them for the default behaviour for each platform.
This function prints its argument to stdout.
+**Since 0.54.0** Can take more more than one argument that will be separated by
+space.
+
### warning()
``` meson
@@ -1205,6 +1208,9 @@ This function prints its argument to stdout prefixed with WARNING:.
*Added 0.44.0*
+**Since 0.54.0** Can take more more than one argument that will be separated by
+space.
+
### summary()
``` meson
diff --git a/docs/markdown/snippets/message_warning_concat.md b/docs/markdown/snippets/message_warning_concat.md
new file mode 100644
index 0000000..39e9e6d
--- /dev/null
+++ b/docs/markdown/snippets/message_warning_concat.md
@@ -0,0 +1,4 @@
+## More than one argument to `message()` and `warning()`
+
+Arguments passed to `message()` and `warning()` will be printed separated by
+space.