From owner-svn-src-all@freebsd.org Sun May 1 16:10:57 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0EC7B29144; Sun, 1 May 2016 16:10:57 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C4681507; Sun, 1 May 2016 16:10:57 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u41GAuJB012478; Sun, 1 May 2016 16:10:56 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u41GAuqH012474; Sun, 1 May 2016 16:10:56 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201605011610.u41GAuqH012474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Sun, 1 May 2016 16:10:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298878 - head/usr.bin/localedef X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 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: Sun, 01 May 2016 16:10:58 -0000 Author: pfg Date: Sun May 1 16:10:56 2016 New Revision: 298878 URL: https://svnweb.freebsd.org/changeset/base/298878 Log: localedef(1): minor spelling fixes on comments. No functional change. Modified: head/usr.bin/localedef/charmap.c head/usr.bin/localedef/collate.c head/usr.bin/localedef/scanner.c head/usr.bin/localedef/time.c Modified: head/usr.bin/localedef/charmap.c ============================================================================== --- head/usr.bin/localedef/charmap.c Sun May 1 14:27:27 2016 (r298877) +++ head/usr.bin/localedef/charmap.c Sun May 1 16:10:56 2016 (r298878) @@ -324,7 +324,7 @@ add_charmap_char(const char *name, int v /* * POSIX insists that certain entries be present, even when not in the - * orginal charmap file. + * original charmap file. */ void add_charmap_posix(void) Modified: head/usr.bin/localedef/collate.c ============================================================================== --- head/usr.bin/localedef/collate.c Sun May 1 14:27:27 2016 (r298877) +++ head/usr.bin/localedef/collate.c Sun May 1 16:10:56 2016 (r298878) @@ -1120,7 +1120,7 @@ dump_collate(void) collate_chain_t *chain; /* - * We have to run throught a preliminary pass to identify all the + * We have to run through a preliminary pass to identify all the * weights that we use for each sorting level. */ for (i = 0; i < NUM_WT; i++) { Modified: head/usr.bin/localedef/scanner.c ============================================================================== --- head/usr.bin/localedef/scanner.c Sun May 1 14:27:27 2016 (r298877) +++ head/usr.bin/localedef/scanner.c Sun May 1 16:10:56 2016 (r298878) @@ -181,7 +181,7 @@ static struct token { /* * These are keywords used in the charmap file. Note that - * Solaris orginally used angle brackets to wrap some of them, + * Solaris originally used angle brackets to wrap some of them, * but we removed that to simplify our parser. The first of these * items are "global items." */ Modified: head/usr.bin/localedef/time.c ============================================================================== --- head/usr.bin/localedef/time.c Sun May 1 14:27:27 2016 (r298877) +++ head/usr.bin/localedef/time.c Sun May 1 16:10:56 2016 (r298878) @@ -262,7 +262,7 @@ dump_time(void) * NOTE: If date_fmt is not specified, then we'll default to * using the %c for date. This is reasonable for most * locales, although for reasons that I don't understand - * Solaris historically has had a seperate format for date. + * Solaris historically has had a separate format for date. */ if ((putl_category(tm.X_fmt, f) == EOF) || (putl_category(tm.x_fmt, f) == EOF) ||