Module Name:    src
Committed By:   kre
Date:           Sat Oct 12 23:34:56 UTC 2024

Modified Files:
        src/bin/sh: miscbltin.c

Log Message:
Undo an idiotic attempted micro optimisation in the previous
version which broke things...


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/bin/sh/miscbltin.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/sh/miscbltin.c
diff -u src/bin/sh/miscbltin.c:1.55 src/bin/sh/miscbltin.c:1.56
--- src/bin/sh/miscbltin.c:1.55	Fri Oct 11 09:02:10 2024
+++ src/bin/sh/miscbltin.c	Sat Oct 12 23:34:56 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: miscbltin.c,v 1.55 2024/10/11 09:02:10 kre Exp $	*/
+/*	$NetBSD: miscbltin.c,v 1.56 2024/10/12 23:34:56 kre Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)miscbltin.c	8.4 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: miscbltin.c,v 1.55 2024/10/11 09:02:10 kre Exp $");
+__RCSID("$NetBSD: miscbltin.c,v 1.56 2024/10/12 23:34:56 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -280,11 +280,8 @@ readcmd(int argc, char **argv)
 #endif
 	}
 
-/*
 	if ((ifs = bltinlookup("IFS", 1)) == NULL)
 		ifs = " \t\n";
-*/
-	ifs = ifsval();
 
 	setstackmark(&mk);
 	status = 0;

Reply via email to