wt-status: remove extraneous newline from 'deleted:' output
This was accidentally introduced during the fixes to avoid putting newlines inside of colorized output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <junkio@cox.net>maint
							parent
							
								
									b982592d66
								
							
						
					
					
						commit
						db830b4f23
					
				|  | @ -78,7 +78,7 @@ static void wt_status_print_filepair(int t, struct diff_filepair *p) | |||
| 				p->one->path, p->two->path); | ||||
| 		break; | ||||
| 	case DIFF_STATUS_DELETED: | ||||
| 		color_printf_ln(c, "deleted: %s", p->one->path); break; | ||||
| 		color_printf(c, "deleted: %s", p->one->path); break; | ||||
| 	case DIFF_STATUS_MODIFIED: | ||||
| 		color_printf(c, "modified: %s", p->one->path); break; | ||||
| 	case DIFF_STATUS_RENAMED: | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Jeff King
						Jeff King