From owner-svn-src-head@FreeBSD.ORG Sun Aug 8 21:25:55 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 058791065675; Sun, 8 Aug 2010 21:25:55 +0000 (UTC) (envelope-from dimitry@andric.com) 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 B97688FC1E; Sun, 8 Aug 2010 21:25:54 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:5929:492e:541:20eb] (unknown [IPv6:2001:7b8:3a7:0:5929:492e:541:20eb]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 0C8605C43; Sun, 8 Aug 2010 23:25:53 +0200 (CEST) Message-ID: <4C5F20E6.9050809@andric.com> Date: Sun, 08 Aug 2010 23:25:58 +0200 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.9pre) Gecko/20100803 Lanikai/3.1.3pre MIME-Version: 1.0 To: Colin Percival References: <201008082104.o78L4Rdw077543@svn.freebsd.org> <4C5F1F69.9020108@freebsd.org> In-Reply-To: <4C5F1F69.9020108@freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Jilles Tjoelker , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r211084 - head/bin/sh X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2010 21:25:55 -0000 On 2010-08-08 23:19, Colin Percival wrote: > On 08/08/10 14:04, Jilles Tjoelker wrote: >> Log: >> Remove unnecessary duplicate letters in mksyntax.c, >> the table elements would just be overwritten twice. >> - add("abcdefghijklmnopqrstucvwxyz", "ISLOWER"); >> - add("ABCDEFGHIJKLMNOPQRSTUCVWXYZ", "ISUPPER"); >> + add("abcdefghijklmnopqrstuvwxyz", "ISLOWER"); >> + add("ABCDEFGHIJKLMNOPQRSTUVWXYZ", "ISUPPER"); > > Ok, I have to wonder: Why was there ever the extra 'C' between 'U' and 'V'? > It seems that it has been there ever since 4.4-Lite, but I don't have access > to historical sources beyond that point. My first guess would be a typo, since C is next to V on most keyboard layouts... :)