Module Name:    src
Committed By:   christos
Date:           Fri Aug 29 09:35:19 UTC 2014

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

Log Message:
remove unused assignment


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/bin/sh/parser.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/parser.c
diff -u src/bin/sh/parser.c:1.92 src/bin/sh/parser.c:1.93
--- src/bin/sh/parser.c:1.92	Fri Aug 29 05:26:39 2014
+++ src/bin/sh/parser.c	Fri Aug 29 05:35:19 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: parser.c,v 1.92 2014/08/29 09:26:39 christos Exp $	*/
+/*	$NetBSD: parser.c,v 1.93 2014/08/29 09:35:19 christos Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)parser.c	8.7 (Berkeley) 5/16/95";
 #else
-__RCSID("$NetBSD: parser.c,v 1.92 2014/08/29 09:26:39 christos Exp $");
+__RCSID("$NetBSD: parser.c,v 1.93 2014/08/29 09:35:19 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -839,7 +839,7 @@ xxreadtoken(void)
 			pungetc();
 			continue;
 		case '\\':
-			switch (c = pgetc()) {
+			switch (pgetc()) {
 			case '\n':
 				startlinno = ++plinno;
 				if (doprompt)

Reply via email to