diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-10-24 18:45:35 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-10-24 18:45:35 +0300 |
commit | 39c268ce0d3c395ce53ef8231f0b6107f6c686bd (patch) | |
tree | fff1beb32c2a88d31d0f8ac6cccc2dd177b9db6c /docs/markdown/snippets/unset_variable.md | |
parent | f64e5cee6bc7ab8c00c31f341afc6043867773d0 (diff) | |
download | meson-39c268ce0d3c395ce53ef8231f0b6107f6c686bd.zip meson-39c268ce0d3c395ce53ef8231f0b6107f6c686bd.tar.gz meson-39c268ce0d3c395ce53ef8231f0b6107f6c686bd.tar.bz2 |
Create release notes page for 0.60.
Diffstat (limited to 'docs/markdown/snippets/unset_variable.md')
-rw-r--r-- | docs/markdown/snippets/unset_variable.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/markdown/snippets/unset_variable.md b/docs/markdown/snippets/unset_variable.md deleted file mode 100644 index 7b2bcdb..0000000 --- a/docs/markdown/snippets/unset_variable.md +++ /dev/null @@ -1,16 +0,0 @@ -## `unset_variable()` - -`unset_variable()` can be used to unset a variable. Reading a variable after -calling `unset_variable()` will raise an exception unless the variable is set -again. - -```meson -# tests/meson.build -tests = ['test1', 'test2'] - -# ... - -unset_variable('tests') - -# tests is no longer usable until it is set again -``` |