From owner-svn-src-all@FreeBSD.ORG Wed Sep 28 12:04:04 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 271AA1065670; Wed, 28 Sep 2011 12:04:04 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (cl-327.ede-01.nl.sixxs.net [IPv6:2001:7b8:2ff:146::2]) by mx1.freebsd.org (Postfix) with ESMTP id DB02A8FC18; Wed, 28 Sep 2011 12:04:03 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:290b:85d7:b1ec:6922] (unknown [IPv6:2001:7b8:3a7:0:290b:85d7:b1ec:6922]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 86EF15C59; Wed, 28 Sep 2011 14:04:00 +0200 (CEST) Message-ID: <4E830D31.10207@FreeBSD.org> Date: Wed, 28 Sep 2011 14:04:01 +0200 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0) Gecko/20110922 Thunderbird/7.0 MIME-Version: 1.0 To: Alexander Best References: <201109271902.p8RJ2isK037034@svn.freebsd.org> <20110927231104.GA13143@freebsd.org> In-Reply-To: <20110927231104.GA13143@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Dag-Erling Smorgrav Subject: Re: svn commit: r225815 - head/usr.bin/fetch X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2011 12:04:04 -0000 On 2011-09-28 01:11, Alexander Best wrote: > On Tue Sep 27 11, Dag-Erling Smorgrav wrote: >> Author: des >> Date: Tue Sep 27 19:02:44 2011 >> New Revision: 225815 >> URL: http://svn.freebsd.org/changeset/base/225815 =2E.. >> --- head/usr.bin/fetch/fetch.1 Tue Sep 27 18:57:26 2011 (r225814) >> +++ head/usr.bin/fetch/fetch.1 Tue Sep 27 19:02:44 2011 (r225815) >> @@ -1,5 +1,5 @@ >> .\"- >> -.\" Copyright (c) 2000-2004 Dag-Erling Co?dan Sm?rgrav >> +.\" Copyright (c) 2000-2011 Dag-Erling Sm?rgrav > > your name isn't being displayed correctly here. =2E.. >> Modified: head/usr.bin/fetch/fetch.c >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- head/usr.bin/fetch/fetch.c Tue Sep 27 18:57:26 2011 (r225814) >> +++ head/usr.bin/fetch/fetch.c Tue Sep 27 19:02:44 2011 (r225815) >> @@ -1,5 +1,5 @@ >> /*- >> - * Copyright (c) 2000-2004 Dag-Erling Co=EFdan Sm=F8rgrav >> + * Copyright (c) 2000-2011 Dag-Erling Sm=F8rgrav > > here your name gets displayed correctly. The first file is plain ASCII, and has character 0xf8 for the letter =F8.= The second file is UTF-8 without BOM, and uses 0xc3 0xb8 to represent the same letter. Maybe it would be nice if both files were UTF-8, but I'm not sure if manpages support that.