Differences From Artifact [7d5fce007b]:
- File src/tag.c — part of check-in [7ab03289ee] at 2015-04-27 13:19:51 on branch trunk — Provide help text for all commands and webpages. (user: drh size: 17911) [more...]
To Artifact [b3e44b4005]:
- File src/tag.c — part of check-in [57f1eaecb8] at 2016-03-24 18:23:45 on branch trunk — Reviewed all Usage: messages for consistency and fixed a few where the fossil command was named in the call to usage(), causing the displayed usage to show the command name twice. Affected commands are bisect options, test-fileage, test-set-mtime, whatis, remote-url, and tag list. (user: rberteig size: 17907)
| ︙ | ︙ | |||
518 519 520 521 522 523 524 |
fossil_print("%s=%s\n", zName, zValue);
}else{
fossil_print("%s\n", zName);
}
}
db_finalize(&q);
}else{
| | | 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
fossil_print("%s=%s\n", zName, zValue);
}else{
fossil_print("%s\n", zName);
}
}
db_finalize(&q);
}else{
usage("list ?CHECK-IN?");
}
}else
{
goto tag_cmd_usage;
}
/* Cleanup */
|
| ︙ | ︙ |