Revert mistaken change: it is UNIX, not Unix.

* glib/tmpl/completion.sgml, glib/tmpl/date.sgml,
        glib/tmpl/fileutils.sgml, glib/tmpl/iochannels.sgml,
        glib/tmpl/macros.sgml, glib/tmpl/memory.sgml,
        glib/tmpl/misc_utils.sgml, glib/tmpl/warnings.sgml,
        glib/tmpl/windows.sgml: Revert mistaken change: it is UNIX, not Unix.

        * glib/tmpl/memory_chunks.sgml,
        glib/tmpl/date.sgml, glib/tmpl/threads.sgml,
        glib/tmpl/gtype.sgml: Trivial markup fixes.

        * glib/gconvert.c, glib/giochannel.c, glib/gmain.c,
        glib/gwin32.c: Revert mistaken change: it is UNIX, not Unix.
This commit is contained in:
Matthias Clasen
2001-12-13 22:24:18 +00:00
parent 9b83c28956
commit a3d7806b6d
24 changed files with 94 additions and 42 deletions

View File

@@ -93,8 +93,8 @@ extern const char **_g_charset_get_aliases (const char *canonical_name);
* @to_codeset: destination codeset
* @from_codeset: source codeset
*
* Same as the standard Unix routine <function>iconv_open()</function>, but
* may be implemented via libiconv on Unix flavors that lack
* Same as the standard UNIX routine <function>iconv_open()</function>, but
* may be implemented via libiconv on UNIX flavors that lack
* a native implementation.
*
* &GLib; provides g_convert() and g_locale_to_utf8() which are likely
@@ -143,8 +143,8 @@ g_iconv_open (const gchar *to_codeset,
* @outbuf: converted output bytes
* @outbytes_left: inout parameter, bytes available to fill in @outbuf
*
* Same as the standard Unix routine <function>iconv()</function>, but
* may be implemented via libiconv on Unix flavors that lack
* Same as the standard UNIX routine <function>iconv()</function>, but
* may be implemented via libiconv on UNIX flavors that lack
* a native implementation.
*
* &GLib; provides g_convert() and g_locale_to_utf8() which are likely
@@ -168,8 +168,8 @@ g_iconv (GIConv converter,
* g_iconv_close:
* @converter: a conversion descriptor from g_iconv_open()
*
* Same as the standard Unix routine <function>iconv_close()</function>, but
* may be implemented via libiconv on Unix flavors that lack
* Same as the standard UNIX routine <function>iconv_close()</function>, but
* may be implemented via libiconv on UNIX flavors that lack
* a native implementation. Should be called to clean up
* the conversion descriptor from g_iconv_open() when
* you are done converting things.

View File

@@ -716,7 +716,7 @@ g_io_channel_set_flags (GIOChannel *channel,
* The values of the flags %G_IO_FLAG_IS_READABLE and %G_IO_FLAG_IS_WRITEABLE
* are cached for internal use by the channel when it is created.
* If they should change at some later point (e.g. partial shutdown
* of a socket with the Unix <function>shutdown()</function> function), the user
* of a socket with the UNIX <function>shutdown()</function> function), the user
* should immediately call g_io_channel_get_flags () to update
* the internal values of these flags.
*

View File

@@ -1529,7 +1529,7 @@ g_source_remove_by_funcs_user_data (GSourceFuncs *funcs,
* g_get_current_time:
* @result: #GTimeVal structure in which to store current time.
*
* Equivalent to Unix's <function>gettimeofday()</function>, but portable
* Equivalent to the UNIX <function>gettimeofday()</function> function, but portable.
**/
void
g_get_current_time (GTimeVal *result)

View File

@@ -99,7 +99,7 @@ g_win32_ftruncate (gint fd,
* g_win32_getlocale:
*
* The setlocale in the Microsoft C library uses locale names of the
* form "English_United States.1252" etc. We want the Unixish standard
* form "English_United States.1252" etc. We want the UNIXish standard
* form "en_US", "zh_TW" etc. This function gets the current thread
* locale from Windows - without any encoding info - and returns it as
* a string of the above form for use in forming file names etc. The