| Ticket UUID: | 4cec2370f1910f78256f80ac6a7e4461f047056c | ||
| Title: | Typo? | ||
| Status: | Open | Type: | Code_Defect |
| Severity: | Cosmetic | Priority: | |
| Subsystem: | Resolution: | Open | |
| Last Modified: | 2011-08-11 06:22:54 | ||
| Version Found In: | b968f023a88a6 | ||
| Description & Comments: | |||
--- src/update.c
+++ src/update.c
@@ -577,11 +577,11 @@
zFile = db_column_text(&q, 0);
zFull = mprintf("%/%/", g.zLocalRoot, zFile);
errCode = historical_version_of_file(zRevision, zFile, &record, &isExe,2);
if( errCode==2 ){
if( db_int(0, "SELECT rid FROM vfile WHERE pathname=%Q", zFile)==0 ){
- fossil_print("UNMANAGE: %s\n", zFile);
+ fossil_print("UNMANAGED: %s\n", zFile);
}else{
undo_save(zFile);
file_delete(zFull);
fossil_print("DELETE: %s\n", zFile);
}
drh added on 2011-08-11 01:24:21 UTC: bharder added on 2011-08-11 06:14:40 UTC: I'm not sure my "D" patch wouldn't be interpretted similarly if the error said "UNMANAGED: " ("oh my, these files are now unmanaged!"), but when I wrote this ticket, it seemed like a better idea. I think there may be room for improvement over both cases, upon reflection. Are we limiting ourselves to a single-word description? I'll leave this open for now, in case there are more comments. This seems like a really, really small deal on one hand, but I think may be able to improve the user-experience, which is always a good thing. bharder added on 2011-08-11 06:22:54 UTC: | |||