mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[util] Space
This commit is contained in:
parent
c544028700
commit
718542ef7a
2 changed files with 2 additions and 3 deletions
|
@ -176,7 +176,7 @@ face_options_t::add_options (option_parser_t *parser)
|
|||
static_assert ((ARRAY_LENGTH_CONST (supported_face_loaders) > 0),
|
||||
"No supported face-loaders found.");
|
||||
GString *s = g_string_new (nullptr);
|
||||
g_string_printf (s, "Set face loader to use (default: %s)\n\n Supported face loaders are: %s",
|
||||
g_string_printf (s, "Set face loader to use (default: %s)\n Supported face loaders are: %s",
|
||||
supported_face_loaders[0].name,
|
||||
supported_face_loaders[0].name);
|
||||
for (unsigned int i = 1; i < ARRAY_LENGTH (supported_face_loaders); i++)
|
||||
|
|
|
@ -146,7 +146,6 @@ font_options_t::post_parse (GError **error)
|
|||
g_string_append_c (s, '/');
|
||||
g_string_append (s, supported_font_funcs[i].name);
|
||||
}
|
||||
g_string_append_c (s, '\n');
|
||||
char *p = g_string_free (s, FALSE);
|
||||
g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
|
||||
"Unknown font function implementation `%s'; supported values are: %s; default is %s",
|
||||
|
@ -307,7 +306,7 @@ font_options_t::add_options (option_parser_t *parser)
|
|||
static_assert ((ARRAY_LENGTH_CONST (supported_font_funcs) > 0),
|
||||
"No supported font-funcs found.");
|
||||
GString *s = g_string_new (nullptr);
|
||||
g_string_printf (s, "Set font functions implementation to use (default: %s)\n\n Supported font function implementations are: %s",
|
||||
g_string_printf (s, "Set font functions implementation to use (default: %s)\n Supported font function implementations are: %s",
|
||||
supported_font_funcs[0].name,
|
||||
supported_font_funcs[0].name);
|
||||
for (unsigned int i = 1; i < ARRAY_LENGTH (supported_font_funcs); i++)
|
||||
|
|
Loading…
Add table
Reference in a new issue