aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast
diff options
context:
space:
mode:
authorLiam Beguin <liambeguin@gmail.com>2023-08-27 13:43:28 -0400
committerEli Schwartz <eschwartz93@gmail.com>2023-09-07 19:14:03 -0400
commit983562c66e9ee28ce4204d69811cd870e2e1960f (patch)
tree1b445f945fbbf4fb7b365ce615ed44c94803010a /mesonbuild/ast
parentba1ba1f5b052ff3873045fc8e608cc58bab937b7 (diff)
downloadmeson-983562c66e9ee28ce4204d69811cd870e2e1960f.zip
meson-983562c66e9ee28ce4204d69811cd870e2e1960f.tar.gz
meson-983562c66e9ee28ce4204d69811cd870e2e1960f.tar.bz2
syntax-highlighting: vim: update builtin function list
Update builtin function list using the refman python docs/genrefman.py \ -g vim \ -o data/syntax-highlighting/vim/syntax/ This also drops gettext() and find_library() from the list of builtin functions that have been deprecated since 2016. Changes are squashed here because test_vim_syntax_highlighting() would validate the file against the list of builtin functions that no longer matches the yaml documentation. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
Diffstat (limited to 'mesonbuild/ast')
-rw-r--r--mesonbuild/ast/interpreter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py
index 70a4f1f..9e098d0 100644
--- a/mesonbuild/ast/interpreter.py
+++ b/mesonbuild/ast/interpreter.py
@@ -148,14 +148,12 @@ class AstInterpreter(InterpreterBase):
'is_disabler': self.func_do_nothing,
'is_variable': self.func_do_nothing,
'disabler': self.func_do_nothing,
- 'gettext': self.func_do_nothing,
'jar': self.func_do_nothing,
'warning': self.func_do_nothing,
'shared_module': self.func_do_nothing,
'option': self.func_do_nothing,
'both_libraries': self.func_do_nothing,
'add_test_setup': self.func_do_nothing,
- 'find_library': self.func_do_nothing,
'subdir_done': self.func_do_nothing,
'alias_target': self.func_do_nothing,
'summary': self.func_do_nothing,