mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-31 05:14:11 +02:00
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:
@@ -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.
|
||||
|
@@ -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.
|
||||
*
|
||||
|
@@ -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)
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user