| | @@ -237,11 +237,11 @@ |
| 237 | 237 | while( db_step(&q)==SQLITE_ROW ){ |
| 238 | 238 | if( allFlag ){ |
| 239 | 239 | unlink(db_column_text(&q, 0)); |
| 240 | 240 | }else{ |
| 241 | 241 | Blob ans; |
| 242 | | - char *prompt = mprintf("remove unmanaged file \"%s\" [y/N]? ", |
| 242 | + char *prompt = mprintf("remove unmanaged file \"%s\" (y/N)? ", |
| 243 | 243 | db_column_text(&q, 0)); |
| 244 | 244 | blob_zero(&ans); |
| 245 | 245 | prompt_user(prompt, &ans); |
| 246 | 246 | if( blob_str(&ans)[0]=='y' ){ |
| 247 | 247 | unlink(db_column_text(&q, 0)); |
| | @@ -545,11 +545,11 @@ |
| 545 | 545 | prepare_commit_comment(&comment, zInit); |
| 546 | 546 | free(zInit); |
| 547 | 547 | if( blob_size(&comment)==0 ){ |
| 548 | 548 | Blob ans; |
| 549 | 549 | blob_zero(&ans); |
| 550 | | - prompt_user("empty check-in comment. continue [y/N]? ", &ans); |
| 550 | + prompt_user("empty check-in comment. continue (y/N)? ", &ans); |
| 551 | 551 | if( blob_str(&ans)[0]!='y' ){ |
| 552 | 552 | db_end_transaction(1); |
| 553 | 553 | exit(1); |
| 554 | 554 | } |
| 555 | 555 | }else{ |
| | @@ -674,11 +674,11 @@ |
| 674 | 674 | blob_appendf(&manifest, "Z %b\n", &mcksum); |
| 675 | 675 | zManifestFile = mprintf("%smanifest", g.zLocalRoot); |
| 676 | 676 | if( !noSign && !g.markPrivate && clearsign(&manifest, &manifest) ){ |
| 677 | 677 | Blob ans; |
| 678 | 678 | blob_zero(&ans); |
| 679 | | - prompt_user("unable to sign manifest. continue [y/N]? ", &ans); |
| 679 | + prompt_user("unable to sign manifest. continue (y/N)? ", &ans); |
| 680 | 680 | if( blob_str(&ans)[0]!='y' ){ |
| 681 | 681 | db_end_transaction(1); |
| 682 | 682 | exit(1); |
| 683 | 683 | } |
| 684 | 684 | } |
| 685 | 685 | |