From owner-cvs-src-old@FreeBSD.ORG Tue Dec 21 20:47:15 2010 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 F37071065694 for ; Tue, 21 Dec 2010 20:47:15 +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 E0CE48FC1F for ; Tue, 21 Dec 2010 20:47:15 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oBLKlFXV078160 for ; Tue, 21 Dec 2010 20:47:15 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oBLKlFHp078159 for cvs-src-old@freebsd.org; Tue, 21 Dec 2010 20:47:15 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201012212047.oBLKlFHp078159@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Tue, 21 Dec 2010 20:47:06 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh alias.c cd.c error.c error.h trap.c src/bin/sh/bltin bltin.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: Tue, 21 Dec 2010 20:47:16 -0000 jilles 2010-12-21 20:47:06 UTC FreeBSD src repository Modified files: bin/sh alias.c cd.c error.c error.h trap.c bin/sh/bltin bltin.h Log: SVN rev 216622 on 2010-12-21 20:47:06Z by jilles sh: Add a function to print warnings (with command name and newline). This is like error() but without raising an exception. It is particularly useful as a replacement for the warnx macro in bltin/bltin.h. Revision Changes Path 1.29 +1 -1 src/bin/sh/alias.c 1.17 +1 -5 src/bin/sh/bltin/bltin.h 1.45 +1 -1 src/bin/sh/cd.c 1.33 +22 -6 src/bin/sh/error.c 1.20 +1 -0 src/bin/sh/error.h 1.39 +1 -1 src/bin/sh/trap.c