diff options
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-manual.md | 8 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.52.0.md | 11 |
2 files changed, 19 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 6be3ed7..a89d939 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1061,6 +1061,14 @@ share/ file1 ``` +### is_disabler() + +``` meson + bool is_disabler(var) +``` + +Returns true if a variable is a disabler and false otherwise. Added in 0.52.0. + ### is_variable() ``` meson diff --git a/docs/markdown/Release-notes-for-0.52.0.md b/docs/markdown/Release-notes-for-0.52.0.md new file mode 100644 index 0000000..c36758a --- /dev/null +++ b/docs/markdown/Release-notes-for-0.52.0.md @@ -0,0 +1,11 @@ +--- +title: Release 0.52.0 +short-description: Release notes for 0.52.0 +... + +# New features + +## Allow checking if a variable is a disabler + +Added the function `is_disabler(var)`. Returns true if a variable is a disabler +and false otherwise. |