summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohan Bilien <jobi@litl.com>2008-10-11 23:19:59 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2008-10-11 23:19:59 +0000
commite36cf2f246a5e65c8fa9ed8b3b18d73c1b9ce470 (patch)
tree17ddfc31a142d124e853e8d398c76fba2bb90f4d /tools
parent8d37e2cb7be78a40ca3649a48f405db29d2cabcc (diff)
downloadgobject-introspection-e36cf2f246a5e65c8fa9ed8b3b18d73c1b9ce470.tar.gz
ignore non-UTF-8 string constants
2008-10-11 Johan Bilien <jobi@litl.com> * giscanner/scannerparser.y: ignore non-UTF-8 string constants 2008-10-11 Johan Bilien <jobi@litl.com> Bug 552347: Parse #defines constants * girepository/gtypelib.c: update the list of value_size with recently defined type tags * giscanner/scannerparser.y: brought back parsing of #defined, as present in older version * giscanner/giscannermodule.c: bind gi_source_scanner_append_filename * giscanner/girwriter.py: write out constant tags in the gir * giscanner/sourcescanner.py: add accessor for const_string * giscanner/transformer.py, giscanner/glibtransformer.py: handle constant svn path=/trunk/; revision=673
Diffstat (limited to 'tools')
-rwxr-xr-xtools/g-ir-scanner2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/g-ir-scanner b/tools/g-ir-scanner
index 88800d70..1d01bb74 100755
--- a/tools/g-ir-scanner
+++ b/tools/g-ir-scanner
@@ -241,7 +241,7 @@ def main(args):
options.cpp_defines,
options.cpp_undefines)
ss.parse_files(filenames)
- ss.parse_macros()
+ ss.parse_macros(filenames)
# Transform the C symbols into AST nodes
transformer = Transformer(ss, options.namespace_name)