Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
91879fc7
Commit
91879fc7
authored
Sep 03, 2006
by
Konstantin Pavlov
Browse files
write comments in config file in user locale instead of utf
parent
8b836ad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/configuration.c
View file @
91879fc7
...
...
@@ -1171,7 +1171,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
fprintf
(
file
,
"[%s]"
,
p_parser
->
psz_object_name
);
if
(
p_parser
->
psz_longname
)
fprintf
(
file
,
" # %s
\n\n
"
,
p_parser
->
psz_longname
);
utf8_
fprintf
(
file
,
" # %s
\n\n
"
,
p_parser
->
psz_longname
);
else
fprintf
(
file
,
"
\n\n
"
);
...
...
@@ -1207,7 +1207,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
case
CONFIG_ITEM_BOOL
:
case
CONFIG_ITEM_INTEGER
:
if
(
p_item
->
psz_text
)
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
utf8_
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
(
p_item
->
i_type
==
CONFIG_ITEM_BOOL
)
?
_
(
"boolean"
)
:
_
(
"integer"
)
);
if
(
i_value
==
p_item
->
i_value_orig
)
...
...
@@ -1219,7 +1219,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
case
CONFIG_ITEM_KEY
:
if
(
p_item
->
psz_text
)
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
utf8_
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
_
(
"key"
)
);
if
(
i_value
==
p_item
->
i_value_orig
)
fprintf
(
file
,
"#"
);
...
...
@@ -1233,7 +1233,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
case
CONFIG_ITEM_FLOAT
:
if
(
p_item
->
psz_text
)
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
utf8_
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
_
(
"float"
)
);
if
(
f_value
==
p_item
->
f_value_orig
)
fprintf
(
file
,
"#"
);
...
...
@@ -1244,7 +1244,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
default:
if
(
p_item
->
psz_text
)
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
utf8_
fprintf
(
file
,
"# %s (%s)
\n
"
,
p_item
->
psz_text
,
_
(
"string"
)
);
if
(
(
!
psz_value
&&
!
p_item
->
psz_value_orig
)
||
(
psz_value
&&
p_item
->
psz_value_orig
&&
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment