Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
220ce67b
Commit
220ce67b
authored
Jan 23, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--full-help: do not alter the configuration, only variables
parent
bacc6339
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/libvlc.c
src/libvlc.c
+4
-2
No files found.
src/libvlc.c
View file @
220ce67b
...
@@ -474,8 +474,10 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
...
@@ -474,8 +474,10 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* Check for full help option */
/* Check for full help option */
else
if
(
var_InheritBool
(
p_libvlc
,
"full-help"
)
)
else
if
(
var_InheritBool
(
p_libvlc
,
"full-help"
)
)
{
{
config_PutInt
(
p_libvlc
,
"advanced"
,
1
);
var_Create
(
p_libvlc
,
"advanced"
,
VLC_VAR_BOOL
);
config_PutInt
(
p_libvlc
,
"help-verbose"
,
1
);
var_SetBool
(
p_libvlc
,
"advanced"
,
true
);
var_Create
(
p_libvlc
,
"help-verbose"
,
VLC_VAR_BOOL
);
var_SetBool
(
p_libvlc
,
"help-verbose"
,
true
);
Help
(
p_libvlc
,
"full-help"
);
Help
(
p_libvlc
,
"full-help"
);
b_exit
=
true
;
b_exit
=
true
;
i_ret
=
VLC_EEXITSUCCESS
;
i_ret
=
VLC_EEXITSUCCESS
;
...
...
Write
Preview
Markdown
is supported
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