aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-08-12 13:23:59 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit3ea3143632e3577ac5794faed1141e460a11a9fb (patch)
treefbcf61902714cc54e99fe5c0acdd90fa46e4967e /tools
parentfa4c14acdeeabaf7aee0304a57ae7878ecea1776 (diff)
downloadserd-3ea3143632e3577ac5794faed1141e460a11a9fb.tar.gz
serd-3ea3143632e3577ac5794faed1141e460a11a9fb.tar.bz2
serd-3ea3143632e3577ac5794faed1141e460a11a9fb.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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/console.c b/tools/console.c
index 1a2cb46c..94c6dc79 100644
--- a/tools/console.c
+++ b/tools/console.c
@@ -98,7 +98,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},
};