mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
[hb-shape/view] Allow --unicodes and --text if at least one is empty
Useful for scripting.
This commit is contained in:
parent
5cab741929
commit
ee19666c39
1 changed files with 12 additions and 0 deletions
|
@ -110,6 +110,18 @@ parse_text (const char *name G_GNUC_UNUSED,
|
|||
{
|
||||
text_options_t *text_opts = (text_options_t *) data;
|
||||
|
||||
if (text_opts->text && !*arg)
|
||||
{
|
||||
// Empty --text provided but --unicodes called; ignore it. This is useful for scripting.
|
||||
return true;
|
||||
}
|
||||
if (text_opts->text && !text_opts->text_len)
|
||||
{
|
||||
// Empty --unicodes provided as well as text; ignore it. This is useful for scripting.
|
||||
g_free (text_opts->text);
|
||||
text_opts->text = nullptr;
|
||||
}
|
||||
|
||||
if (text_opts->text)
|
||||
{
|
||||
g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
|
||||
|
|
Loading…
Add table
Reference in a new issue