Fossil

Check-in [c3f72593]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Comment tweak
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | andygoth-changes
Files: files | file ages | folders
SHA1: c3f7259326c1882375cdfaaa50fc3823a06d4dc5
User & Date: andygoth 2016-11-05 21:26:38.586
Context
2016-11-05
22:22
Implement most of the new changes command, still need to do --all, --unmodified, and --extra ... (check-in: 7595bdfb user: andygoth tags: andygoth-changes)
21:26
Comment tweak ... (check-in: c3f72593 user: andygoth tags: andygoth-changes)
21:25
Implement changes option parser and default logic, still need to implement filtering ... (check-in: cc3baab8 user: andygoth tags: andygoth-changes)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/checkin.c.
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  CB_EDITED , CB_UPDATED , CB_CHANGED, CB_MISSING   , CB_ADDED   , CB_DELETED,
  CB_RENAMED, CB_CONFLICT, CB_META   , CB_UNMODIFIED, CB_EXTRA   , CB_MERGE  ,
  CB_RELPATH, CB_SHA1SUM , CB_HEADER , CB_VERBOSE   , CB_CLASSIFY,

  /* Bitmask values. */
  C_EDITED     = 1 << CB_EDITED,
  C_UPDATED    = 1 << CB_UPDATED,
  C_CHANGED    = 1 << CB_CHANGED, /* Resembles CB_EDITED|CB_UPDATED. */
  C_MISSING    = 1 << CB_MISSING,
  C_ADDED      = 1 << CB_ADDED,
  C_DELETED    = 1 << CB_DELETED,
  C_RENAMED    = 1 << CB_RENAMED,
  C_CONFLICT   = 1 << CB_CONFLICT,
  C_META       = 1 << CB_META,
  C_UNMODIFIED = 1 << CB_UNMODIFIED,







|







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  CB_EDITED , CB_UPDATED , CB_CHANGED, CB_MISSING   , CB_ADDED   , CB_DELETED,
  CB_RENAMED, CB_CONFLICT, CB_META   , CB_UNMODIFIED, CB_EXTRA   , CB_MERGE  ,
  CB_RELPATH, CB_SHA1SUM , CB_HEADER , CB_VERBOSE   , CB_CLASSIFY,

  /* Bitmask values. */
  C_EDITED     = 1 << CB_EDITED,
  C_UPDATED    = 1 << CB_UPDATED,
  C_CHANGED    = 1 << CB_CHANGED, /* Becomes CB_EDITED|CB_UPDATED. */
  C_MISSING    = 1 << CB_MISSING,
  C_ADDED      = 1 << CB_ADDED,
  C_DELETED    = 1 << CB_DELETED,
  C_RENAMED    = 1 << CB_RENAMED,
  C_CONFLICT   = 1 << CB_CONFLICT,
  C_META       = 1 << CB_META,
  C_UNMODIFIED = 1 << CB_UNMODIFIED,