From nobody@FreeBSD.org  Sun Dec 26 03:38:51 2004
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2FD3B16A4CE
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 26 Dec 2004 03:38:51 +0000 (GMT)
Received: from www.freebsd.org (www.freebsd.org [216.136.204.117])
	by mx1.FreeBSD.org (Postfix) with ESMTP id EBDF943D49
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 26 Dec 2004 03:38:50 +0000 (GMT)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id iBQ3cocI066813
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 26 Dec 2004 03:38:50 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id iBQ3copa066812;
	Sun, 26 Dec 2004 03:38:50 GMT
	(envelope-from nobody)
Message-Id: <200412260338.iBQ3copa066812@www.freebsd.org>
Date: Sun, 26 Dec 2004 03:38:50 GMT
From: Benjamin Lutz <benlutz@datacomm.ch>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Fix LC_NUMERIC and LC_MONETARY for de_CH locale (patch)
X-Send-Pr-Version: www-2.3

>Number:         75502
>Category:       conf
>Synopsis:       [patch] [locale] Fix LC_NUMERIC and LC_MONETARY for de_CH locale
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    edwin
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 26 03:40:25 GMT 2004
>Closed-Date:    Tue Jun 16 02:37:24 UTC 2009
>Last-Modified:  Tue Jun 16 02:40:01 UTC 2009
>Originator:     Benjamin Lutz
>Release:        FreeBSD 5.3-RELEASE-p2 i386
>Organization:
>Environment:
FreeBSD merlin 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #1: Thu Dec 23 16:41:30 CET 2004     maxlor@merlin:/usr/src/sys/i386/compile/MERLIN  i386
>Description:
With the de_CH (swiss german) locale, numbers should look like this:
  numbers:           1'234.45
  monetary values:   Fr. 1'234.45
Previously, the thousands separator was missing for numbers, and "." for monetary values, and "," was incorrectly used as decimal point.
>How-To-Repeat:

>Fix:
this patch adds a new file, share/numericdef/de_CH.ISO8859-1.src.

http://de.wikipedia.org/wiki/Schreibweise_von_Zahlen
http://sourceware.org/bugzilla/attachment.cgi?id=870&action=view



diff -ruN share.orig/monetdef/de_CH.ISO8859-1.src share/monetdef/de_CH.ISO8859-1.src
--- share.orig/monetdef/de_CH.ISO8859-1.src	Tue Dec 25 19:50:48 2001
+++ share/monetdef/de_CH.ISO8859-1.src	Sun Dec 26 04:14:50 2004
@@ -8,9 +8,9 @@
 # currency_symbol
 Fr.
 # mon_decimal_point
-,
-# mon_thousands_sep
 .
+# mon_thousands_sep
+'
 # mon_grouping, separated by ;
 3;3
 # positive_sign
diff -ruN share.orig/numericdef/Makefile share/numericdef/Makefile
--- share.orig/numericdef/Makefile	Sun Sep  5 06:21:07 2004
+++ share/numericdef/Makefile	Sun Dec 26 04:14:50 2004
@@ -10,6 +10,7 @@
 		ca_ES.ISO8859-1 \
 		cs_CZ.ISO8859-2 \
 		da_DK.ISO8859-1 \
+		de_CH.ISO8859-1 \
 		de_DE.ISO8859-1 \
 		el_GR.ISO8859-7 \
 		en_US.ISO8859-1 \
@@ -47,11 +48,11 @@
 LOCALEDIR=	${DESTDIR}/usr/share/locale
 
 ASCIILINKS=	en_US
-LATIN15LINKS=   af_ZA ca_ES da_DK de_DE en_US es_ES fi_FI fr_BE fr_FR is_IS \
-		it_CH it_IT nl_NL no_NO pt_PT sv_SE
+LATIN15LINKS=   af_ZA ca_ES da_DK de_CH de_DE en_US es_ES fi_FI fr_BE fr_FR \
+		is_IS it_CH it_IT nl_NL no_NO pt_PT sv_SE
 
-UTF8_LATIN1LINKS=	af_ZA ca_ES da_DK de_DE en_US es_ES fi_FI fr_BE fr_FR \
-			is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
+UTF8_LATIN1LINKS=	af_ZA ca_ES da_DK de_CH de_DE en_US es_ES fi_FI fr_BE \
+			fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
 UTF8_LATIN2LINKS=	cs_CZ hr_HR hu_HU pl_PL ro_RO sk_SK sl_SI
 UTF8_LATIN5LINKS=	sr_YU uk_UA
 UTF8_LATIN7LINKS=	el_GR
@@ -63,7 +64,7 @@
 US_LINKS=	en_CA en_GB
 GB_LINKS=	en_AU en_NZ
 FR_LINKS=	fr_CA fr_CH
-DE_LINKS=	de_AT de_CH
+DE_LINKS=	de_AT
 IT_LINKS=	it_CH
 BE_LINKS=	nl_BE
 RU_LINKS=       ru_RU.CP1251 ru_RU.CP866 ru_RU.ISO8859-5
diff -ruN share.orig/numericdef/de_CH.ISO8859-1.src share/numericdef/de_CH.ISO8859-1.src
--- share.orig/numericdef/de_CH.ISO8859-1.src	Thu Jan  1 01:00:00 1970
+++ share/numericdef/de_CH.ISO8859-1.src	Sun Dec 26 04:14:50 2004
@@ -0,0 +1,12 @@
+# $FreeBSD: $
+#
+# WARNING: spaces may be essential at the end of lines
+# WARNING: empty lines are essential too
+#
+# decimal_point
+.
+# thousands_sep
+'
+# grouping, separated by ;
+3;3
+# EOF

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-i18n 
Responsible-Changed-By: gavin 
Responsible-Changed-When: Mon May 18 15:10:24 UTC 2009 
Responsible-Changed-Why:  
Over to maintainer(s) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=75502 

From: Edwin Groothuis <edwin@mavetju.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:  
Subject: Re: conf/75502: [patch] [locale] Fix LC_NUMERIC and LC_MONETARY for de_CH locale
Date: Mon, 8 Jun 2009 17:31:23 +1000

 --huq684BweRXVnRxX
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 Patch for -current, to be installed after a test run.
 
 -- 
 Edwin Groothuis		Website: http://www.mavetju.org/
 edwin@mavetju.org	Weblog:  http://www.mavetju.org/weblog/
 
 --huq684BweRXVnRxX
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename=a
 
 Index: numericdef/Makefile
 ===================================================================
 --- numericdef/Makefile	(revision 193634)
 +++ numericdef/Makefile	(working copy)
 @@ -7,6 +7,7 @@
  		ca_ES.ISO8859-1 \
  		cs_CZ.ISO8859-2 \
  		da_DK.ISO8859-1 \
 +		de_CH.ISO8859-1 \
  		de_DE.ISO8859-1 \
  		el_GR.ISO8859-7 \
  		en_US.ISO8859-1 \
 @@ -67,7 +68,7 @@
  		KOI8-R KOI8-U PT154 SJIS US-ASCII UTF-8
  
  BE_LINKS=	fr_BE:nl_BE
 -DE_LINKS=	de_DE:de_AT de_DE:de_CH
 +DE_LINKS=	de_DE:de_AT
  FR_LINKS=	fr_FR:fr_CA fr_FR:fr_CH
  GB_LINKS=	en_GB:en_AU en_GB:en_NZ
  IT_LINKS=	it_IT:it_CH
 @@ -90,15 +91,15 @@
  eucJP_UTF-8=	ja_JP
  eucKR_CP949=	ko_KR
  eucKR_UTF-8=	ko_KR
 -ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI \
 -		fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT sv_SE \
 -		${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
 +ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES \
 +		fi_FI fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT \
 +		sv_SE ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_ISO8859-1= ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_US-ASCII= en_US ${GB_LINKS} ${US_LINKS}
 -ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI fr_BE \
 -		fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
 +ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES fi_FI \
 +		fr_BE fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
  ISO8859-2_UTF-8= cs_CZ hr_HR hu_HU pl_PL ro_RO sk_SK sl_SI
  ISO8859-5_UTF-8= sr_YU uk_UA
  ISO8859-5_CP1251= uk_UA
 Index: numericdef/de_CH.ISO8859-1.src
 ===================================================================
 --- numericdef/de_CH.ISO8859-1.src	(revision 0)
 +++ numericdef/de_CH.ISO8859-1.src	(revision 0)
 @@ -0,0 +1,12 @@
 +# $FreeBSD$
 +#
 +# WARNING: spaces may be essential at the end of lines
 +# WARNING: empty lines are essential too
 +#
 +# decimal_point
 +.
 +# thousands_sep
 +'
 +# grouping, separated by ;
 +3;3
 +# EOF
 
 Property changes on: numericdef/de_CH.ISO8859-1.src
 ___________________________________________________________________
 Added: svn:keywords
    + FreeBSD=%H
 
 Index: monetdef/de_CH.ISO8859-1.src
 ===================================================================
 --- monetdef/de_CH.ISO8859-1.src	(revision 193634)
 +++ monetdef/de_CH.ISO8859-1.src	(working copy)
 @@ -8,9 +8,9 @@
  # currency_symbol
  Fr.
  # mon_decimal_point
 -,
 +.
  # mon_thousands_sep
 -.
 +'
  # mon_grouping, separated by ;
  3;3
  # positive_sign
 
 --huq684BweRXVnRxX--
 
 
State-Changed-From-To: open->patched 
State-Changed-By: edwin 
State-Changed-When: Tue Jun 9 22:22:15 UTC 2009 
State-Changed-Why:  
Commitd to head, MFC in one week. 


Responsible-Changed-From-To: freebsd-i18n->edwin 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Jun 9 22:22:15 UTC 2009 
Responsible-Changed-Why:  
I'll do the MFC 

http://www.freebsd.org/cgi/query-pr.cgi?pr=75502 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/75502: commit references a PR
Date: Tue,  9 Jun 2009 22:22:21 +0000 (UTC)

 Author: edwin
 Date: Tue Jun  9 22:22:04 2009
 New Revision: 193867
 URL: http://svn.freebsd.org/changeset/base/193867
 
 Log:
   Fix LC_NUMERIC and LC_MONETARY for de_CH locale
   
   With the de_CH (swiss german) locale, numbers should look like this:
   
       numbers: 1'234.45
       monetary values: Fr. 1'234.45
   
   Previously, the thousands separator was missing for numbers, and
   "." for monetary values, and "," was incorrectly used as decimal
   point.
   
   PR:		conf/75502
   Submitted by:	Benjamin Lutz <benlutz@datacomm.ch>
   MFC after:	1 week
 
 Added:
   head/share/numericdef/de_CH.ISO8859-1.src   (contents, props changed)
 Modified:
   head/share/monetdef/de_CH.ISO8859-1.src
   head/share/numericdef/Makefile
 
 Modified: head/share/monetdef/de_CH.ISO8859-1.src
 ==============================================================================
 --- head/share/monetdef/de_CH.ISO8859-1.src	Tue Jun  9 22:12:13 2009	(r193866)
 +++ head/share/monetdef/de_CH.ISO8859-1.src	Tue Jun  9 22:22:04 2009	(r193867)
 @@ -8,9 +8,9 @@ CHF 
  # currency_symbol
  Fr.
  # mon_decimal_point
 -,
 -# mon_thousands_sep
  .
 +# mon_thousands_sep
 +'
  # mon_grouping, separated by ;
  3;3
  # positive_sign
 
 Modified: head/share/numericdef/Makefile
 ==============================================================================
 --- head/share/numericdef/Makefile	Tue Jun  9 22:12:13 2009	(r193866)
 +++ head/share/numericdef/Makefile	Tue Jun  9 22:22:04 2009	(r193867)
 @@ -7,6 +7,7 @@ LOCALES=	af_ZA.ISO8859-1 \
  		ca_ES.ISO8859-1 \
  		cs_CZ.ISO8859-2 \
  		da_DK.ISO8859-1 \
 +		de_CH.ISO8859-1 \
  		de_DE.ISO8859-1 \
  		el_GR.ISO8859-7 \
  		en_US.ISO8859-1 \
 @@ -67,7 +68,7 @@ ENCODINGS=	ARMSCII-8 Big5 Big5HKSCS \
  		KOI8-R KOI8-U PT154 SJIS US-ASCII UTF-8
  
  BE_LINKS=	fr_BE:nl_BE
 -DE_LINKS=	de_DE:de_AT de_DE:de_CH
 +DE_LINKS=	de_DE:de_AT
  FR_LINKS=	fr_FR:fr_CA fr_FR:fr_CH
  GB_LINKS=	en_GB:en_AU en_GB:en_NZ
  IT_LINKS=	it_IT:it_CH
 @@ -90,15 +91,15 @@ eucJP_SJIS=	ja_JP
  eucJP_UTF-8=	ja_JP
  eucKR_CP949=	ko_KR
  eucKR_UTF-8=	ko_KR
 -ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI \
 -		fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT sv_SE \
 -		${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
 +ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES \
 +		fi_FI fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT \
 +		sv_SE ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_ISO8859-1= ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_US-ASCII= en_US ${GB_LINKS} ${US_LINKS}
 -ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI fr_BE \
 -		fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
 +ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES fi_FI \
 +		fr_BE fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
  ISO8859-2_UTF-8= cs_CZ hr_HR hu_HU pl_PL ro_RO sk_SK sl_SI
  ISO8859-5_UTF-8= sr_YU uk_UA
  ISO8859-5_CP1251= uk_UA
 
 Added: head/share/numericdef/de_CH.ISO8859-1.src
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/share/numericdef/de_CH.ISO8859-1.src	Tue Jun  9 22:22:04 2009	(r193867)
 @@ -0,0 +1,12 @@
 +# $FreeBSD$
 +#
 +# WARNING: spaces may be essential at the end of lines
 +# WARNING: empty lines are essential too
 +#
 +# decimal_point
 +.
 +# thousands_sep
 +'
 +# grouping, separated by ;
 +3;3
 +# EOF
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: edwin 
State-Changed-When: Tue Jun 16 02:37:12 UTC 2009 
State-Changed-Why:  
MFC done, thank you very much! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=75502 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/75502: commit references a PR
Date: Tue, 16 Jun 2009 02:35:35 +0000 (UTC)

 Author: edwin
 Date: Tue Jun 16 02:35:21 2009
 New Revision: 194276
 URL: http://svn.freebsd.org/changeset/base/194276
 
 Log:
   MFC of r193867:
   
     Fix LC_NUMERIC and LC_MONETARY for de_CH locale
   
     With the de_CH (swiss german) locale, numbers should look like this:
   
         numbers: 1'234.45
         monetary values: Fr. 1'234.45
   
     Previously, the thousands separator was missing for numbers, and
     "." for monetary values, and "," was incorrectly used as decimal
     point.
   
   PR:           conf/75502
   Submitted by: Benjamin Lutz <benlutz@datacomm.ch>
 
 Added:
   stable/7/share/numericdef/de_CH.ISO8859-1.src
      - copied unchanged from r193867, head/share/numericdef/de_CH.ISO8859-1.src
 Modified:
   stable/7/share/monetdef/   (props changed)
   stable/7/share/monetdef/de_CH.ISO8859-1.src
   stable/7/share/numericdef/   (props changed)
   stable/7/share/numericdef/Makefile
 
 Modified: stable/7/share/monetdef/de_CH.ISO8859-1.src
 ==============================================================================
 --- stable/7/share/monetdef/de_CH.ISO8859-1.src	Tue Jun 16 01:43:33 2009	(r194275)
 +++ stable/7/share/monetdef/de_CH.ISO8859-1.src	Tue Jun 16 02:35:21 2009	(r194276)
 @@ -8,9 +8,9 @@ CHF 
  # currency_symbol
  Fr.
  # mon_decimal_point
 -,
 -# mon_thousands_sep
  .
 +# mon_thousands_sep
 +'
  # mon_grouping, separated by ;
  3;3
  # positive_sign
 
 Modified: stable/7/share/numericdef/Makefile
 ==============================================================================
 --- stable/7/share/numericdef/Makefile	Tue Jun 16 01:43:33 2009	(r194275)
 +++ stable/7/share/numericdef/Makefile	Tue Jun 16 02:35:21 2009	(r194276)
 @@ -7,6 +7,7 @@ LOCALES=	af_ZA.ISO8859-1 \
  		ca_ES.ISO8859-1 \
  		cs_CZ.ISO8859-2 \
  		da_DK.ISO8859-1 \
 +		de_CH.ISO8859-1 \
  		de_DE.ISO8859-1 \
  		el_GR.ISO8859-7 \
  		en_US.ISO8859-1 \
 @@ -67,7 +68,7 @@ ENCODINGS=	ARMSCII-8 Big5 Big5HKSCS \
  		KOI8-R KOI8-U PT154 SJIS US-ASCII UTF-8
  
  BE_LINKS=	fr_BE:nl_BE
 -DE_LINKS=	de_DE:de_AT de_DE:de_CH
 +DE_LINKS=	de_DE:de_AT
  FR_LINKS=	fr_FR:fr_CA fr_FR:fr_CH
  GB_LINKS=	en_GB:en_AU en_GB:en_NZ
  IT_LINKS=	it_IT:it_CH
 @@ -90,15 +91,15 @@ eucJP_SJIS=	ja_JP
  eucJP_UTF-8=	ja_JP
  eucKR_CP949=	ko_KR
  eucKR_UTF-8=	ko_KR
 -ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI \
 -		fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT sv_SE \
 -		${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
 +ISO8859-1_ISO8859-15= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES \
 +		fi_FI fr_BE fr_FR is_IS it_CH it_IT nl_NL no_NO pt_PT \
 +		sv_SE ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_ISO8859-1= ${BE_LINKS} ${DE_LINKS} ${FR_LINKS} ${GB_LINKS} \
  		${IT_LINKS} ${NO_LINKS} ${US_LINKS}
  ISO8859-1_US-ASCII= en_US ${GB_LINKS} ${US_LINKS}
 -ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_DE en_US es_ES eu_ES fi_FI fr_BE \
 -		fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
 +ISO8859-1_UTF-8= af_ZA ca_ES da_DK de_CH de_DE en_US es_ES eu_ES fi_FI \
 +		fr_BE fr_FR is_IS it_IT nl_NL no_NO pt_BR pt_PT sv_SE
  ISO8859-2_UTF-8= cs_CZ hr_HR hu_HU pl_PL ro_RO sk_SK sl_SI
  ISO8859-5_UTF-8= sr_YU uk_UA
  ISO8859-5_CP1251= uk_UA
 
 Copied: stable/7/share/numericdef/de_CH.ISO8859-1.src (from r193867, head/share/numericdef/de_CH.ISO8859-1.src)
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ stable/7/share/numericdef/de_CH.ISO8859-1.src	Tue Jun 16 02:35:21 2009	(r194276, copy of r193867, head/share/numericdef/de_CH.ISO8859-1.src)
 @@ -0,0 +1,12 @@
 +# $FreeBSD$
 +#
 +# WARNING: spaces may be essential at the end of lines
 +# WARNING: empty lines are essential too
 +#
 +# decimal_point
 +.
 +# thousands_sep
 +'
 +# grouping, separated by ;
 +3;3
 +# EOF
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
>Unformatted:
