Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Don't prompt when using -x |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | cleanX-no-clean-glob |
Files: | files | file ages | folders |
SHA1: |
e24b5abaf29931122e749dcceb82e03d |
User & Date: | jan.nijtmans 2015-11-04 00:50:00.000 |
Context
2016-05-21
| ||
23:58 | merge cleanX ... (check-in: 70f77a1b user: jan.nijtmans tags: cleanX-no-clean-glob) | |
2015-11-04
| ||
00:50 | Don't prompt when using -x ... (check-in: e24b5aba user: jan.nijtmans tags: cleanX-no-clean-glob) | |
2015-11-03
| ||
23:50 | merge cleanX ... (check-in: 607bc737 user: jan.nijtmans tags: cleanX-no-clean-glob) | |
23:50 | Don't prompt when using -x ... (check-in: daf352e7 user: jan.nijtmans tags: cleanX) | |
Changes
Changes to src/checkin.c.
︙ | ︙ | |||
732 733 734 735 736 737 738 739 740 741 742 743 744 745 | db_must_be_within_tree(); if( find_option("verily","x",0)!=0 ){ verilyFlag = 1; emptyDirsFlag = 1; disableUndo = 1; scanFlags |= SCAN_ALL; zCleanFlag = 0; } if( zIgnoreFlag==0 ){ zIgnoreFlag = db_get("ignore-glob", 0); } if( zKeepFlag==0 && !verilyFlag ){ zKeepFlag = db_get("keep-glob", 0); } | > | 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 | db_must_be_within_tree(); if( find_option("verily","x",0)!=0 ){ verilyFlag = 1; emptyDirsFlag = 1; disableUndo = 1; scanFlags |= SCAN_ALL; zCleanFlag = 0; noPrompt = 1; } if( zIgnoreFlag==0 ){ zIgnoreFlag = db_get("ignore-glob", 0); } if( zKeepFlag==0 && !verilyFlag ){ zKeepFlag = db_get("keep-glob", 0); } |
︙ | ︙ |