diff options
author | Martin Blanchard <tchaik@gmx.com> | 2017-09-15 22:43:01 +0200 |
---|---|---|
committer | Martin Blanchard <tchaik@gmx.com> | 2017-09-15 22:43:01 +0200 |
commit | 777cd24063cc9991defef275b5c13637a9072049 (patch) | |
tree | 8aaa7f536a57d2fea2a8fa3612e6e187f19ce835 | |
parent | 105507a173ba4429cef3266cefb5e812202db5f8 (diff) | |
download | meson-777cd24063cc9991defef275b5c13637a9072049.zip meson-777cd24063cc9991defef275b5c13637a9072049.tar.gz meson-777cd24063cc9991defef275b5c13637a9072049.tar.bz2 |
get-unquoted: Mention get_unquoted() in reference manual
-rw-r--r-- | docs/markdown/Reference-manual.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 1bed44d..9d9111e 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1522,6 +1522,11 @@ page](Configuration.md) It has three methods: value has not been set returns `default_value` if it is defined *(added 0.38.0)* and errors out if not +- `get_unquoted(varname, default_value)` returns the value of `varname` + but without surrounding double quotes (`"`). If the value has not been + set returns `default_value` if it is defined and errors out if not. + Available since 0.43.0 + - `has(varname)`, returns `true` if the specified variable is set - `merge_from(other)` takes as argument a different configuration data |