Fossil

Check-in [daf352e7]
Login

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
Files: files | file ages | folders
SHA1: daf352e7a19611f84f09765d787e45b1a6ed9b14
User & Date: jan.nijtmans 2015-11-03 23:50:00.000
Context
2016-05-21
23:48
Merge trunk ... (check-in: a2c0e3f2 user: jan.nijtmans tags: cleanX)
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
Don't prompt when using -x ... (check-in: daf352e7 user: jan.nijtmans tags: cleanX)
22:50
merge trunk ... (check-in: c7fbeb7a user: jan.nijtmans tags: cleanX)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/checkin.c.
740
741
742
743
744
745
746

747
748
749
750
751
752
753
  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);
  }







>







740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
  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);
  }