Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Swap single-/double-dash convention in [fossil help help] listing to match the other commands. Use single-dash for single-letter option names and double-dash for long option names. (Truth is that either is accepted; this is merely a display issue.) |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
03e1850bf12d6bdd4e3d9fc4e4001f03 |
| User & Date: | andygoth 2015-03-05 19:51:17.116 |
Context
|
2015-03-06
| ||
| 04:10 | Fix misplaced </span> so it actually lands on the line that begins the rather than a few lines before it begins. check-in: ee45080dd6 user: andybradford tags: trunk | |
|
2015-03-05
| ||
| 19:51 | Swap single-/double-dash convention in [fossil help help] listing to match the other commands. Use single-dash for single-letter option names and double-dash for long option names. (Truth is that either is accepted; this is merely a display issue.) check-in: 03e1850bf1 user: andygoth tags: trunk | |
| 19:18 | Correct [fossil finfo -n 0] to have no limit, in accordance with documentation. Update documentation to mention that negative numbers also have no limit and that unlimited is the default. check-in: 81da7b0024 user: andygoth tags: trunk | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
1045 1046 1047 1048 1049 1050 1051 | } /* ** COMMAND: help ** ** Usage: %fossil help COMMAND | | | | | | | 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 |
}
/*
** COMMAND: help
**
** Usage: %fossil help COMMAND
** or: %fossil COMMAND --help
**
** Display information on how to use COMMAND. To display a list of
** available commands one of:
**
** %fossil help Show common commands
** %fossil help -a|--all Show both common and auxiliary commands
** %fossil help -t|--test Show test commands only
** %fossil help -x|--aux Show auxiliary commands only
** %fossil help -w|--www Show list of WWW pages
*/
void help_cmd(void){
int rc, idx, isPage = 0;
const char *z;
const char *zCmdOrPage;
const char *zCmdOrPagePlural;
if( g.argc<3 ){
|
| ︙ | ︙ |