431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
** the <a>setting</a> command. If no external diff program is configured, then
** the "-i" option is a no-op. The "-i" option converts "gdiff" into
** "diff".
**
** The results of the internal diff command can also be seen in the gui:
** 1. Go to the <a href="vdiff">vdiff</a> page
** 2. use the "diff against another version" link on the Check-in detail view.
*/
void diff_cmd(void){
int isGDiff; /* True for gdiff. False for normal diff */
int isInternDiff; /* True for internal diff */
int hasNFlag; /* True if -N or --new-file flag is used */
const char *zFrom; /* Source version number */
const char *zTo; /* Target version number */
|
>
>
>
|
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
|
** the <a>setting</a> command. If no external diff program is configured, then
** the "-i" option is a no-op. The "-i" option converts "gdiff" into
** "diff".
**
** The results of the internal diff command can also be seen in the gui:
** 1. Go to the <a href="vdiff">vdiff</a> page
** 2. use the "diff against another version" link on the Check-in detail view.
**
** The "-N" or "--new-file" option causes the complete text of added or
** deleted files to be displayed.
*/
void diff_cmd(void){
int isGDiff; /* True for gdiff. False for normal diff */
int isInternDiff; /* True for internal diff */
int hasNFlag; /* True if -N or --new-file flag is used */
const char *zFrom; /* Source version number */
const char *zTo; /* Target version number */
|