Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | It turns out that fossil globally consumes the --quiet flag: touch now accounts for that. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
519af48c8c025f27f18b994882405553 |
| User & Date: | stephan 2019-06-13 21:49:08.486 |
Context
|
2019-06-14
| ||
| 00:24 | Error message typo fix. check-in: 5b6be64760 user: stephan tags: trunk | |
|
2019-06-13
| ||
| 21:49 | It turns out that fossil globally consumes the --quiet flag: touch now accounts for that. check-in: 519af48c8c user: stephan tags: trunk | |
| 21:28 | Minor reformatting, doc updates, and corrected duplicate display of touched file count in dry-run mode. check-in: adbbeac151 user: stephan tags: trunk | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
1921 1922 1923 1924 1925 1926 1927 |
int quietFlag = 0; /* -q|--quiet */
int timeFlag; /* -1==--checkin, 1==--checkout, 0==--now */
i64 nowTime = 0; /* Timestamp of --now or --checkout */
Stmt q;
Blob absBuffer = empty_blob; /* Absolute filename buffer */
verboseFlag = find_option("verbose","v",0)!=0;
| | | 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 |
int quietFlag = 0; /* -q|--quiet */
int timeFlag; /* -1==--checkin, 1==--checkout, 0==--now */
i64 nowTime = 0; /* Timestamp of --now or --checkout */
Stmt q;
Blob absBuffer = empty_blob; /* Absolute filename buffer */
verboseFlag = find_option("verbose","v",0)!=0;
quietFlag = find_option("quiet","q",0)!=0 || g.fQuiet;
dryRunFlag = find_option("dry-run","n",0)!=0
|| find_option("dryrun",0,0)!=0;
zGlobList = find_option("glob", "g",1);
zGlobFile = find_option("globfile", "G",1);
if(zGlobList && zGlobFile){
fossil_fatal("Options -g and -G may not be used together.");
|
| ︙ | ︙ |