Differences From:
File
src/checkin.c
part of check-in
[68bfc1d5cc]
- When a commit aborts, the check-in comment is saved and used to reinitialize
the check-in comment template on the next commit attempt.
by
drh on
2009-12-09 23:35:18.
[view]
To:
File
src/checkin.c
part of check-in
[6ae51190cc]
- reserve the use of brackets in stdout for artifacts
by
rwilson on
2009-12-10 02:19:16.
[view]
@@ -238,9 +238,9 @@
if( allFlag ){
unlink(db_column_text(&q, 0));
}else{
Blob ans;
- char *prompt = mprintf("remove unmanaged file \"%s\" [y/N]? ",
+ char *prompt = mprintf("remove unmanaged file \"%s\" (y/N)? ",
db_column_text(&q, 0));
blob_zero(&ans);
prompt_user(prompt, &ans);
if( blob_str(&ans)[0]=='y' ){
@@ -546,9 +546,9 @@
free(zInit);
if( blob_size(&comment)==0 ){
Blob ans;
blob_zero(&ans);
- prompt_user("empty check-in comment. continue [y/N]? ", &ans);
+ prompt_user("empty check-in comment. continue (y/N)? ", &ans);
if( blob_str(&ans)[0]!='y' ){
db_end_transaction(1);
exit(1);
}
@@ -675,9 +675,9 @@
zManifestFile = mprintf("%smanifest", g.zLocalRoot);
if( !noSign && !g.markPrivate && clearsign(&manifest, &manifest) ){
Blob ans;
blob_zero(&ans);
- prompt_user("unable to sign manifest. continue [y/N]? ", &ans);
+ prompt_user("unable to sign manifest. continue (y/N)? ", &ans);
if( blob_str(&ans)[0]!='y' ){
db_end_transaction(1);
exit(1);
}