From owner-svn-src-head@FreeBSD.ORG Thu Jul 25 20:50:35 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AEE9CDDA; Thu, 25 Jul 2013 20:50:35 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A8212F97; Thu, 25 Jul 2013 20:50:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6PKoZw6097398; Thu, 25 Jul 2013 20:50:35 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6PKoZ7W097397; Thu, 25 Jul 2013 20:50:35 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201307252050.r6PKoZ7W097397@svn.freebsd.org> From: Jilles Tjoelker Date: Thu, 25 Jul 2013 20:50:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253659 - head/bin/sh X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jul 2013 20:50:35 -0000 Author: jilles Date: Thu Jul 25 20:50:35 2013 New Revision: 253659 URL: http://svnweb.freebsd.org/changeset/base/253659 Log: sh: Remove an incorrect comment. Modified: head/bin/sh/parser.c Modified: head/bin/sh/parser.c ============================================================================== --- head/bin/sh/parser.c Thu Jul 25 19:48:15 2013 (r253658) +++ head/bin/sh/parser.c Thu Jul 25 20:50:35 2013 (r253659) @@ -98,7 +98,7 @@ static int needprompt; /* true if inter static int lasttoken; /* last token read */ int tokpushback; /* last token pushed back */ static char *wordtext; /* text of last word returned by readtoken */ -static int checkkwd; /* 1 == check for kwds, 2 == also eat newlines */ +static int checkkwd; static struct nodelist *backquotelist; static union node *redirnode; static struct heredoc *heredoc;