From 97e8f814360f17436a46ffc05d8632605ac04bdb Mon Sep 17 00:00:00 2001 From: dsl Date: Sat, 26 Jun 2004 20:48:44 +0000 Subject: [PATCH] Remove a broken optimistion that crept in earlier today. --- bin/sh/expand.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bin/sh/expand.c b/bin/sh/expand.c index c94d345790ce..4cefa8b47411 100644 --- a/bin/sh/expand.c +++ b/bin/sh/expand.c @@ -1,4 +1,4 @@ -/* $NetBSD: expand.c,v 1.64 2004/06/26 14:21:29 dsl Exp $ */ +/* $NetBSD: expand.c,v 1.65 2004/06/26 20:48:44 dsl Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)expand.c 8.5 (Berkeley) 5/15/95"; #else -__RCSID("$NetBSD: expand.c,v 1.64 2004/06/26 14:21:29 dsl Exp $"); +__RCSID("$NetBSD: expand.c,v 1.65 2004/06/26 20:48:44 dsl Exp $"); #endif #endif /* not lint */ @@ -904,9 +904,6 @@ recordregion(int start, int end, int inquotes) { struct ifsregion *ifsp; - if (start == end) - return; - if (ifslastp == NULL) { ifsp = &ifsfirst; } else {