From owner-cvs-all@FreeBSD.ORG Sun Jul 11 01:11:13 2004 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 1AA5016A4CE; Sun, 11 Jul 2004 01:11:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F110543D2D; Sun, 11 Jul 2004 01:11:12 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6B1BCqs050232; Sun, 11 Jul 2004 01:11:12 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6B1BCM3050231; Sun, 11 Jul 2004 01:11:12 GMT (envelope-from tjr) Message-Id: <200407110111.i6B1BCM3050231@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 11 Jul 2004 01:11:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/hexdump conv.c display.c hexdump.h od.1 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, 11 Jul 2004 01:11:13 -0000 tjr 2004-07-11 01:11:12 UTC FreeBSD src repository Modified files: usr.bin/hexdump conv.c display.c hexdump.h od.1 Log: Add POSIX-style support for multibyte characters to od(1): the 'c' conversion interprets input bytes as multibyte sequences and displays printable characters in the area corresponding to their first byte. The remaining bytes are shown as "**". Revision Changes Path 1.7 +63 -4 src/usr.bin/hexdump/conv.c 1.19 +31 -1 src/usr.bin/hexdump/display.c 1.9 +6 -1 src/usr.bin/hexdump/hexdump.h 1.17 +14 -5 src/usr.bin/hexdump/od.1