| 280 | } |
| 281 | |
| 282 | static const char *wt_status_unmerged_status_string(int stagemask) |
| 283 | { |
| 284 | switch (stagemask) { |
| 285 | case 1: |
| 286 | return _("both deleted:"); |
| 287 | case 2: |
| 288 | return _("added by us:"); |
| 289 | case 3: |
| 290 | return _("deleted by them:"); |
| 291 | case 4: |
| 292 | return _("added by them:"); |
| 293 | case 5: |
| 294 | return _("deleted by us:"); |
| 295 | case 6: |
| 296 | return _("both added:"); |
| 297 | case 7: |
| 298 | return _("both modified:"); |
| 299 | default: |
| 300 | BUG("unhandled unmerged status %x", stagemask); |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | static const char *wt_status_diff_status_string(int status) |
| 305 | { |
no outgoing calls
no test coverage detected