Module Name:    src
Committed By:   kre
Date:           Mon Mar 20 13:12:35 UTC 2017

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

Log Message:
That will teach me to commit from the version I've actually
been testing, rather than the "other version" ...


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/bin/sh/arith_token.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/arith_token.c
diff -u src/bin/sh/arith_token.c:1.2 src/bin/sh/arith_token.c:1.3
--- src/bin/sh/arith_token.c:1.2	Mon Mar 20 11:31:00 2017
+++ src/bin/sh/arith_token.c	Mon Mar 20 13:12:35 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: arith_token.c,v 1.2 2017/03/20 11:31:00 kre Exp $	*/
+/*	$NetBSD: arith_token.c,v 1.3 2017/03/20 13:12:35 kre Exp $	*/
 
 /*-
  * Copyright (c) 2002
@@ -39,7 +39,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: arith_token.c,v 1.2 2017/03/20 11:31:00 kre Exp $");
+__RCSID("$NetBSD: arith_token.c,v 1.3 2017/03/20 13:12:35 kre Exp $");
 #endif /* not lint */
 
 #include <inttypes.h>
@@ -89,7 +89,7 @@ arith_token(void)
 			arith_buf = end;
 			return ARITH_NUM;
 
-		} else if (is_name(token) {
+		} else if (is_name(token)) {
 			/*
 			 * Variable names all start with an alpha (or '_')
 			 * and nothing else does.  They continue for the

Reply via email to