X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fnl_langinfo.c;h=287abfd0362b7b65b4640e48dab67b097155d8cc;hb=1276a2c5f24c0c932426aca9c899fa524d2443f2;hp=a4bde1217cf790f6b9c08e476d7ec237c2d8fadf;hpb=c6fb743caa960cd140819012a34086a62e3571b2;p=gnulib.git diff --git a/lib/nl_langinfo.c b/lib/nl_langinfo.c index a4bde1217..287abfd03 100644 --- a/lib/nl_langinfo.c +++ b/lib/nl_langinfo.c @@ -1,6 +1,6 @@ /* nl_langinfo() replacement: query locale dependent information. - Copyright (C) 2007-2010 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -141,7 +141,8 @@ nl_langinfo (nl_item item) { static char buf[2 + 10 + 1]; - /* Woe32 has a function returning the locale's codepage as a number. */ + /* The Windows API has a function returning the locale's codepage as + a number. */ sprintf (buf, "CP%u", GetACP ()); return buf; }