From owner-cvs-all@FreeBSD.ORG Sun Jun 15 02:28:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E673937B401; Sun, 15 Jun 2003 02:28:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91FA243F93; Sun, 15 Jun 2003 02:28:17 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5F9SH0U034071; Sun, 15 Jun 2003 02:28:17 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5F9SHVT034070; Sun, 15 Jun 2003 02:28:17 -0700 (PDT) Message-Id: <200306150928.h5F9SHVT034070@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 15 Jun 2003 02:28:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/indent args.c indent.c indent_globs.h io.c lexi.c parse.c pr_comment.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 09:28:18 -0000 charnier 2003/06/15 02:28:17 PDT FreeBSD src repository Modified files: usr.bin/indent args.c indent.c indent_globs.h io.c lexi.c parse.c pr_comment.c Log: err() on allocation failure. WARNS=9 compliant use #if 0, #ifndef lint, #endif /* not lint */, #endif ordering when a message is provided, use errx() instead of err(). Revision Changes Path 1.11 +6 -3 src/usr.bin/indent/args.c 1.18 +19 -9 src/usr.bin/indent/indent.c 1.8 +8 -0 src/usr.bin/indent/indent_globs.h 1.12 +5 -4 src/usr.bin/indent/io.c 1.15 +1 -2 src/usr.bin/indent/lexi.c 1.10 +3 -1 src/usr.bin/indent/parse.c 1.8 +4 -2 src/usr.bin/indent/pr_comment.c