diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-17 15:28:59 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-17 15:28:59 +0300 |
commit | 62aabb5a8be90467603b1348d8ae4c0847bc5d1e (patch) | |
tree | e2c54dedb447dea44a8ef1123b95fdda9edfd3f3 | |
parent | e76ed84677b7dcb77ed96c19abba22a60d5c0b4a (diff) | |
download | meson-62aabb5a8be90467603b1348d8ae4c0847bc5d1e.zip meson-62aabb5a8be90467603b1348d8ae4c0847bc5d1e.tar.gz meson-62aabb5a8be90467603b1348d8ae4c0847bc5d1e.tar.bz2 |
Missing version info added.
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 0c1893b..901535b 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -861,7 +861,7 @@ page](Configuration.md) It has three methods: - `get(varname, default_value)` returns the value of `varname`, if the value has not been set returns `default_value` if it is defined *(added 0.38.0)* and errors out if not - `has(varname)`, returns `true` if the specified variable is set - - `merge_from(other)` takes as argument a different configuration data object and copies all entries from that object to the current object + - `merge_from(other)` takes as argument a different configuration data object and copies all entries from that object to the current object, available since 0.42.0 - `set(varname, value)`, sets a variable to a given value - `set10(varname, boolean_value)` is the same as above but the value is either `true` or `false` and will be written as 1 or 0, respectively - `set_quoted(varname, value)` is same as `set` but quotes the value in double quotes (`"`) |