Changeset 3040dc9b67a6848f96a8e309cf04882296710d3a
- Timestamp:
- 18/12/07 21:38:47
(10 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1198010327 +0000
- git-parent:
[1282aa001bb24c2600135a36dacfe5826f6d1948]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1198010327 +0000
- Message:
Don't create two competing options of the same name
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3d0196c |
r3040dc9 |
|
| 1907 | 1907 | |
|---|
| 1908 | 1908 | add_bool( "color", VLC_TRUE, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE ); |
|---|
| 1909 | | add_bool( "advanced", 0, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT, |
|---|
| | 1909 | add_bool( "advanced", VLC_FALSE, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT, |
|---|
| 1910 | 1910 | VLC_FALSE ); |
|---|
| 1911 | 1911 | change_need_restart(); |
|---|
| … | … | |
| 2384 | 2384 | N_("print help for VLC and all its modules (can be combined with " \ |
|---|
| 2385 | 2385 | "--advanced and --help-verbose)") |
|---|
| 2386 | | #define ADVANCED_TEXT \ |
|---|
| 2387 | | N_("print help for the advanced options") |
|---|
| 2388 | 2386 | #define HELP_VERBOSE_TEXT \ |
|---|
| 2389 | 2387 | N_("ask for extra verbosity when displaying help") |
|---|
| … | … | |
| 2412 | 2410 | add_bool( "longhelp", VLC_FALSE, NULL, LONGHELP_TEXT, "", VLC_FALSE ); |
|---|
| 2413 | 2411 | change_short( 'H' ); |
|---|
| 2414 | | change_internal(); |
|---|
| 2415 | | change_unsaveable(); |
|---|
| 2416 | | add_bool( "advanced", VLC_FALSE, NULL, ADVANCED_TEXT, "", VLC_FALSE ); |
|---|
| 2417 | 2412 | change_internal(); |
|---|
| 2418 | 2413 | change_unsaveable(); |
|---|