Commit 5eb05446 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Grammar

parent f11e37dc
...@@ -334,7 +334,7 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -334,7 +334,7 @@ int config_AutoSaveConfigFile( vlc_object_t * );
add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc, p_callback ); \ add_typename_inner( CONFIG_ITEM_BOOL, name, text, longtext, advc, p_callback ); \
p_config[i_config].i_value = value p_config[i_config].i_value = value
/* For option renamed */ /* For renamed option */
#define add_deprecated( name, strict ) \ #define add_deprecated( name, strict ) \
add_config_inner( ); \ add_config_inner( ); \
p_config[ i_config ].i_type = p_config[ i_config -1 ].i_type; \ p_config[ i_config ].i_type = p_config[ i_config -1 ].i_type; \
...@@ -344,7 +344,7 @@ int config_AutoSaveConfigFile( vlc_object_t * ); ...@@ -344,7 +344,7 @@ int config_AutoSaveConfigFile( vlc_object_t * );
? p_config[ i_config-1 ].psz_current \ ? p_config[ i_config-1 ].psz_current \
: p_config[ i_config-1 ].psz_name; : p_config[ i_config-1 ].psz_name;
/* For option suppressed*/ /* For removed option */
#define add_suppressed_inner( name, type ) \ #define add_suppressed_inner( name, type ) \
add_type_inner( type ); \ add_type_inner( type ); \
p_config[ i_config ].psz_name = name; \ p_config[ i_config ].psz_name = name; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment