From ecc13e73cf96cb14e2403be6538593a167d7ea23 Mon Sep 17 00:00:00 2001 From: "Serge E. Hallyn" Date: Mon, 17 Apr 2006 10:14:48 -0500 Subject: [PATCH] cleanups: Remove impossible case in quote.c The switch is inside an if statement which is false if the character is ' '. Either the if should be <=' ' instead of <' ', or the case should be removed as it could be misleading. Signed-off-by: Serge E. Hallyn Signed-off-by: Junio C Hamano --- quote.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/quote.c b/quote.c index 7218a7080d..06792d47c3 100644 --- a/quote.c +++ b/quote.c @@ -144,8 +144,6 @@ static int quote_c_style_counted(const char *name, int namelen, case '\\': /* fallthru */ case '"': EMITQ(); break; - case ' ': - break; default: /* octal */ EMITQ();