From owner-cvs-src@FreeBSD.ORG Wed Jun 23 07:02:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFD8816A4CE; Wed, 23 Jun 2004 07:02:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA88143D3F; Wed, 23 Jun 2004 07:02:29 +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 i5N71ign030280; Wed, 23 Jun 2004 07:01:44 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5N71iDP030276; Wed, 23 Jun 2004 07:01:44 GMT (envelope-from tjr) Message-Id: <200406230701.i5N71iDP030276@repoman.freebsd.org> From: "Tim J. Robbins" Date: Wed, 23 Jun 2004 07:01:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include ctype.h rune.h runetype.h src/lib/libc/locale euc.c rune.c runetype.c setrunelocale.c tolower.c toupper.c src/usr.bin/mklocale yacc.y X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jun 2004 07:02:30 -0000 tjr 2004-06-23 07:01:44 UTC FreeBSD src repository Modified files: include ctype.h rune.h runetype.h lib/libc/locale euc.c rune.c runetype.c setrunelocale.c tolower.c toupper.c usr.bin/mklocale yacc.y Log: Prefix the names of members of _RuneLocale and its sub-structures with ``__'' to avoid polluting the namespace. This doesn't change the documented rune interface at all, but breaks applications that accessed _RuneLocale directly. Revision Changes Path 1.26 +4 -4 src/include/ctype.h 1.5 +4 -6 src/include/rune.h 1.9 +20 -20 src/include/runetype.h 1.20 +5 -5 src/lib/libc/locale/euc.c 1.11 +52 -49 src/lib/libc/locale/rune.c 1.10 +8 -8 src/lib/libc/locale/runetype.c 1.39 +13 -13 src/lib/libc/locale/setrunelocale.c 1.10 +6 -6 src/lib/libc/locale/tolower.c 1.10 +6 -6 src/lib/libc/locale/toupper.c 1.21 +37 -33 src/usr.bin/mklocale/yacc.y