Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3040dc9b
Commit
3040dc9b
authored
Dec 18, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't create two competing options of the same name
parent
1282aa00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
src/libvlc-module.c
src/libvlc-module.c
+1
-6
No files found.
src/libvlc-module.c
View file @
3040dc9b
...
@@ -1906,7 +1906,7 @@ vlc_module_begin();
...
@@ -1906,7 +1906,7 @@ vlc_module_begin();
#endif
#endif
add_bool
(
"color"
,
VLC_TRUE
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"color"
,
VLC_TRUE
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"advanced"
,
0
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
add_bool
(
"advanced"
,
VLC_FALSE
,
NULL
,
ADVANCED_TEXT
,
ADVANCED_LONGTEXT
,
VLC_FALSE
);
VLC_FALSE
);
change_need_restart
();
change_need_restart
();
add_bool
(
"interact"
,
VLC_TRUE
,
NULL
,
INTERACTION_TEXT
,
add_bool
(
"interact"
,
VLC_TRUE
,
NULL
,
INTERACTION_TEXT
,
...
@@ -2383,8 +2383,6 @@ vlc_module_begin();
...
@@ -2383,8 +2383,6 @@ vlc_module_begin();
#define LONGHELP_TEXT \
#define LONGHELP_TEXT \
N_("print help for VLC and all its modules (can be combined with " \
N_("print help for VLC and all its modules (can be combined with " \
"--advanced and --help-verbose)")
"--advanced and --help-verbose)")
#define ADVANCED_TEXT \
N_("print help for the advanced options")
#define HELP_VERBOSE_TEXT \
#define HELP_VERBOSE_TEXT \
N_("ask for extra verbosity when displaying help")
N_("ask for extra verbosity when displaying help")
#define LIST_TEXT \
#define LIST_TEXT \
...
@@ -2413,9 +2411,6 @@ vlc_module_begin();
...
@@ -2413,9 +2411,6 @@ vlc_module_begin();
change_short
(
'H'
);
change_short
(
'H'
);
change_internal
();
change_internal
();
change_unsaveable
();
change_unsaveable
();
add_bool
(
"advanced"
,
VLC_FALSE
,
NULL
,
ADVANCED_TEXT
,
""
,
VLC_FALSE
);
change_internal
();
change_unsaveable
();
add_bool
(
"help-verbose"
,
VLC_FALSE
,
NULL
,
HELP_VERBOSE_TEXT
,
""
,
add_bool
(
"help-verbose"
,
VLC_FALSE
,
NULL
,
HELP_VERBOSE_TEXT
,
""
,
VLC_FALSE
);
VLC_FALSE
);
change_internal
();
change_internal
();
...
...
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