Fossil

Check-in [fbf3a5dd]
Login

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

Overview
Comment:If caller doesn't provide a UUID, leave it out of the message.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | check-in-edit
Files: files | file ages | folders
SHA1: fbf3a5dd87d55c276214e9f1ab7303965b216c10
User & Date: andybradford 2015-08-06 05:14:57.242
Context
2015-08-07
05:16
Merge in changes from trunk. ... (Closed-Leaf check-in: 5246eac0 user: andybradford tags: check-in-edit)
2015-08-06
05:14
If caller doesn't provide a UUID, leave it out of the message. ... (check-in: fbf3a5dd user: andybradford tags: check-in-edit)
04:52
Add additional tests and helper procedures and isolate some tests more. ... (check-in: 892e523f user: andybradford tags: check-in-edit)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/info.c.
2738
2739
2740
2741
2742
2743
2744

2745

2746
2747
2748
2749
2750
2751
2752
  if( zInit && zInit[0]){
    blob_append(&prompt, zInit, -1);
  }
#else
  blob_init(&prompt, zInit, -1);
#endif
  blob_append(&prompt, "\n# Enter a new comment for check-in ", -1);

  blob_append(&prompt, zUuid, -1);

  blob_append(&prompt, ".\n# Lines beginning with a # are ignored.\n", -1);
  prompt_for_user_comment(pComment, &prompt);
  blob_reset(&prompt);
}

#define AMEND_USAGE_STMT "UUID OPTION ?OPTION ...?"
/*







>
|
>







2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
  if( zInit && zInit[0]){
    blob_append(&prompt, zInit, -1);
  }
#else
  blob_init(&prompt, zInit, -1);
#endif
  blob_append(&prompt, "\n# Enter a new comment for check-in ", -1);
  if( zUuid && zUuid[0] ){
    blob_append(&prompt, zUuid, -1);
  }
  blob_append(&prompt, ".\n# Lines beginning with a # are ignored.\n", -1);
  prompt_for_user_comment(pComment, &prompt);
  blob_reset(&prompt);
}

#define AMEND_USAGE_STMT "UUID OPTION ?OPTION ...?"
/*