diff options
author | David Robillard <d@drobilla.net> | 2021-08-12 13:23:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:07 -0500 |
commit | da7940afb82d8d1dd5321b311f27340f5702aea2 (patch) | |
tree | 43f4caf75a0e49a59db03d129ec837ea4972cf25 /tools | |
parent | 4339b6f9cb0da8a9d6519077f4a0ecc385cc382c (diff) | |
download | serd-da7940afb82d8d1dd5321b311f27340f5702aea2.tar.gz serd-da7940afb82d8d1dd5321b311f27340f5702aea2.tar.bz2 serd-da7940afb82d8d1dd5321b311f27340f5702aea2.zip |
Split SERD_READ_VERBATIM into two more precise flags
Although the "verbatim" idea is nice and simple, more fine-grained control is
necessary since these features (relative URI preservation and blank node label
clash avoidance) are useful in different situations.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/console.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/console.c b/tools/console.c index 2a2905d9..ea5fd7ee 100644 --- a/tools/console.c +++ b/tools/console.c @@ -69,7 +69,8 @@ serd_set_input_option(const SerdStringView name, static const InputOption input_options[] = { {"lax", SERD_READ_LAX}, {"variables", SERD_READ_VARIABLES}, - {"verbatim", SERD_READ_VERBATIM}, + {"relative", SERD_READ_RELATIVE}, + {"global", SERD_READ_GLOBAL}, {"generated", SERD_READ_GENERATED}, {NULL, SERD_READ_LAX}, }; |