From owner-cvs-src-old@FreeBSD.ORG Thu Dec 24 18:41:45 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B53F1065676 for ; Thu, 24 Dec 2009 18:41:45 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F02AA8FC22 for ; Thu, 24 Dec 2009 18:41:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nBOIfiKi043223 for ; Thu, 24 Dec 2009 18:41:44 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nBOIfiBD043222 for cvs-src-old@freebsd.org; Thu, 24 Dec 2009 18:41:44 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <200912241841.nBOIfiBD043222@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Thu, 24 Dec 2009 18:41:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh alias.c alias.h arith.h arith.y cd.c exec.c exec.h expand.c expand.h histedit.c input.c input.h mail.c main.c main.h memalloc.c memalloc.h myhistedit.h options.c options.h output.c output.h parser.c parser.h show.c show.h var.c var.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Dec 2009 18:41:45 -0000 jilles 2009-12-24 18:41:14 UTC FreeBSD src repository Modified files: bin/sh alias.c alias.h arith.h arith.y cd.c exec.c exec.h expand.c expand.h histedit.c input.c input.h mail.c main.c main.h memalloc.c memalloc.h myhistedit.h options.c options.h output.c output.h parser.c parser.h show.c show.h var.c var.h Log: SVN rev 200956 on 2009-12-24 18:41:14Z by jilles sh: Constify various strings. Most of this is adding const keywords, but setvar() in var.c had to be changed somewhat more. Revision Changes Path 1.26 +3 -3 src/bin/sh/alias.c 1.9 +1 -1 src/bin/sh/alias.h 1.13 +2 -2 src/bin/sh/arith.h 1.23 +4 -4 src/bin/sh/arith.y 1.38 +1 -1 src/bin/sh/cd.c 1.38 +17 -15 src/bin/sh/exec.c 1.17 +8 -8 src/bin/sh/exec.h 1.57 +6 -6 src/bin/sh/expand.c 1.13 +2 -2 src/bin/sh/expand.h 1.33 +3 -3 src/bin/sh/histedit.c 1.28 +1 -1 src/bin/sh/input.c 1.12 +1 -1 src/bin/sh/input.h 1.15 +1 -1 src/bin/sh/mail.c 1.34 +2 -2 src/bin/sh/main.c 1.9 +1 -1 src/bin/sh/main.h 1.29 +1 -1 src/bin/sh/memalloc.c 1.12 +1 -1 src/bin/sh/memalloc.h 1.11 +2 -2 src/bin/sh/myhistedit.h 1.28 +3 -2 src/bin/sh/options.c 1.14 +1 -1 src/bin/sh/options.h 1.23 +1 -1 src/bin/sh/output.c 1.15 +1 -1 src/bin/sh/output.h 1.69 +2 -2 src/bin/sh/parser.c 1.13 +1 -1 src/bin/sh/parser.h 1.24 +1 -1 src/bin/sh/show.c 1.12 +1 -1 src/bin/sh/show.h 1.42 +19 -20 src/bin/sh/var.c 1.15 +5 -5 src/bin/sh/var.h