diff options
author | Bruno Haible <bruno@clisp.org> | 2012-01-07 04:22:05 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2012-01-07 04:22:05 +0100 |
commit | 00f43085d1bd7d745a515ef76fe99d7a8df7644e (patch) | |
tree | 5daafb12fbd9a99e6011568c04461132fcd957db /lib/nl_langinfo.c | |
parent | bfacc22b1cd7713444e1403a66476d55284d260f (diff) | |
download | gnulib-00f43085d1bd7d745a515ef76fe99d7a8df7644e.tar.gz |
Talk about "native Windows API", not "Woe32".
* lib/accept4.c: Update comments to mention native Windows.
* lib/execute.c: Likewise.
* lib/fatal-signal.c: Likewise.
* lib/localcharset.c: Likewise.
* lib/nanosleep.c: Likewise.
* lib/nl_langinfo.c: Likewise.
* lib/pclose.c: Likewise.
* lib/pipe-filter-gi.c: Likewise.
* lib/pipe-filter-ii.c: Likewise.
* lib/pipe.c: Likewise.
* lib/pipe2.c: Likewise.
* lib/popen.c: Likewise.
* lib/progreloc.c: Likewise.
* lib/relocatable.c: Likewise.
* lib/sigaction.c: Likewise.
* lib/sigprocmask.c: Likewise.
* lib/spawn-pipe.h: Likewise.
* lib/spawn-pipe.c: Likewise.
* lib/spawni.c: Likewise.
* lib/stat-time.h: Likewise.
* lib/w32spawn.h: Likewise.
* tests/test-isatty.c: Likewise.
* lib/config.charset: More comments.
* doc/gnulib-intro.texi: Mention native Windows.
* doc/posix-functions/_Exit_C99.texi: Likewise.
* doc/posix-headers/fcntl.texi: Likewise.
Diffstat (limited to 'lib/nl_langinfo.c')
-rw-r--r-- | lib/nl_langinfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/nl_langinfo.c b/lib/nl_langinfo.c index a06b8d4e90..c73c76982c 100644 --- a/lib/nl_langinfo.c +++ b/lib/nl_langinfo.c @@ -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; } |