-I$(top_srcdir)/gmodule, fix from Michael Meeks
[platform/upstream/glib.git] / ChangeLog.pre-2-6
index b8738da..951725e 100644 (file)
@@ -1,7 +1,837 @@
-2000-10-09  Havoc Pennington  <hp@redhat.com>
+2001-01-03  Havoc Pennington  <hp@pobox.com>
+
+       * tests/Makefile.am (INCLUDES): -I$(top_srcdir)/gmodule, 
+       fix from Michael Meeks
+
+       * Makefile.am (INCLUDES): DISABLE was spelled wrong
+
+Wed Jan  3 14:10:49 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gmain.[ch]: Switch GMainLoop to be ref/unref, use to
+       make dropping reference to running loop safe.
+
+Wed Dec 13 20:41:49 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gmain.c (g_source_unref_internal): Unref callback->cb_data
+       if it was still set when the source is freed. (Usually, this
+       will be done by g_source_destroy.)
+
+ 2001-01-02  Dan Winship  <danw@helixcode.com>
+
+       * garray.h (g_array_append_val, g_array_prepend_val,
+       g_array_insert_val): Use parentheses around an argument to make
+       these cause an error if you pass a non-lvalue for the value,
+       rather than silently doing the wrong thing.
+
+2000-12-29  Tor Lillqvist  <tml@iki.fi>
+
+       * glibconfig.h.win32.in: Add GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG.
+
+       * glib.def: Update.
+
+       * {.,*}/makefile.{mingw,msc}.in: Add -DG_ENABLE_DEBUG.
+       
+Fri Dec 29 14:53:18 2000  Tim Janik  <timj@gtk.org>
+
+       * configure.in: we can't grow _cv_ variables by using a backticked
+       expr that refers back to the variable (glib_cv_sizeof_system_thread for
+       G_THREAD_USE_PID_SURROGATE), that'd keep the variable growing every time
+       it's evaluated. quantum states, anyone?)
+
+Thu Dec 28 10:21:46 2000  Tim Janik  <timj@gtk.org>
+
+       * gmem.[hc]: got rid of outdated dmalloc support. provide g_try_malloc()
+       and g_try_realloc() which _may_ fail and return NULL.
+       nuked g_mem_check(), provided GMemVTable for memory function
+       virtualization, alterable at program startup with g_mem_set_vtable().
+       provided glib_mem_profiler_table and g_mem_profile() to support limited
+       profiling information out of the box (uses mprotect() for free()ed areas
+       on linux).
+       provide globally visible G_MEM_ALIGN.
+       buncha cleanups.
+
+       * docs/macros.txt: file to get a clue about the various configuration
+       macros.
+
+       * docs/debugging.txt: explain debugging traps.
+
+       * configure.in: got rid of --enable-mem-check and --enable-mem-profile,
+       define GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG. check malloc prototypes
+       and define SANE_MALLOC_PROTOS is we can use them.
+       <boy, is this file a mess>
+
+       * gutils.c, gscanner.c: fix up compatibility warnings, use g_message().
+
+2000-12-27  Tor Lillqvist  <tml@iki.fi>
+
+       * README.win32: Update.
+
+2000-12-25  Tor Lillqvist  <tml@iki.fi>
+
+       * gmessages.c: (Win32) Use a MessageBox for fatal
+       messages. Collect eror message into a buffer, and display that.
+
+       * glib.def: Update.
+
+       * glibconfig.h.win32.in: Update. Remove unused wchar and wctype
+       macros, add G_MODULE_SUFFIX.
+
+2000-12-24  Ali Abdin  <aliabdin@aucegypt.edu>
+
+       * Makefile.am, gcompat.h, glib.h: New gcompat.h header file
+         as recommended by Havoc.
+
+       * gdate.c, gdate.h, testgdate.c,
+         docs/reference/glib/glib-sections.txt,
+         docs/reference/glib/tmpl/date.sgml, tests/date-test.c: Rename some
+         of the gdate functions to use the '_get' in their name. Patch
+         reviewed by Havoc.
+               
+2000-12-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Determine the suffix of the shared librarries for
+       this system. This is done analogous to
+       ltconfig.sh. G_MODULE_SUFFIX in glibconfig.h is set to either
+       "sl", "dll", or (most often) "so".
+
+       * tests/Makefile.am, tests/module-test.c,
+       tests/libmoduletestplugin_a.c, tests/libmoduletestplugin_b.c:
+       Added new testcase for gmodule. This is mostly copied from
+       gmodule/testgmodule.c, but unlike that is is quiet. (Why BTW are
+       some tests that verbose, not to say loquacious...)
+
+2000-12-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * grand.c: Updated G_RAND_DOUBLE_TRANSFORM to be more
+       accurate. Redid g_rand_double() such that it returns 52 bits after
+       the point instead of 32 as before. That OTOH requires calling
+       g_rand_int() twice. Overhauled g_rand_int_range(), which is easier
+       now thanks to the new precision of g_rand_double(). Thanks to
+       Sverre Johansen <sj@ifi.uio.no> for the hint.
+
+       * grand.h: Added g_rand_boolean() and g_random_boolean()
+       macros. While they could be omitted due to extreme simplicity,
+       they make intention clearer in code and are therefore good to have.
+
+       * grand.c, grand.h: Renamed all 'min' and 'max' parameters to'
+       begin' and 'end' resp. to avoid making people think, that 'max' is
+       included in the interval. 'end' now isn't, whereas 'begin'
+       is. That's similar to the use in the STL.
+
+       * gslist.c, glist.c: Ok, I'm a moron. When I originally
+       implemented ENABLE_GC_FRIENDLY, I forgot to include config.h into
+       the affected files. Now that Alex did that for those two,
+       inevitable typos surfaced, which are now fixed.
+       
+       * garray.c, ghash.c, gqueue.c, gtree.c: Include config.h as well,
+       as ENABLE_GC_FRIENDLY should be known.
+
+2000-12-19  Alexander Larsson  <alexl@redhat.com>
+
+       * configure.in:
+       Added --disable-mem-pools option.
+
+       * glist.c:
+       * gslist.c:
+       * gnode.c:
+       * gmem.c:
+       Disable free list and memory chunks if DISABLE_MEM_POOLS is defined.
+
+2000-12-17  Tor Lillqvist  <tml@iki.fi>
+
+       * gutf8.c (g_utf8_get_charset_internal): (Win32) Use GetACP to get
+       the current ANSI codepage.
+
+       * gunicode.h: Add comment that the static string g_get_charset
+       sets the parameter to point to should be copied in case the
+       charset might be changed later in the program.
+
+2000-12-14  Tor Lillqvist  <tml@iki.fi>
+
+       * makefile.{mingw,msc}.in: No need to -DGSPAWN_HELPER when
+       compiling gspawn-win32-helper any longer.
+
+       * giowin32.c (g_io_win32_dispatch): Warn if no callback. Call
+       callback correctly.
+       (g_io_win32_create_watch): Fix typo.
+       (g_io_win32_fd_create_watch): Ditto.
+       (g_io_channel_unix_new): If it is a file descriptor (i.e., a Unix
+       fd lookalike provided by the C library), call
+       g_io_channel_win32_new_fd(). If it is a socket (from WinSock),
+       call g_io_cahnnel_win32_new_stream_socket(). Hopefully sockets and
+       fds don't overlap. TODO: Implement also datagram sockets.
+       (g_io_channel_win32_poll): Call g_main_context_get_poll_func().
+
+       * gcompletion.h: Include <unistd.h> only on Unix. Is this
+       inclusion really needed here? OTOH, do include <stddef.h>, for
+       size_t.
+
+       * gmessages.c: (Win32) Don't define a function called "write" that
+       might clash with the prototype from <io.h>, use a #define.
+
+       * glib.def: Update.
+
+       * gmain.c (g_source_add_poll): Don't return a value from void
+       function.
+       (g_main_context_get_poll_func): Compile also for non-Win32, as
+       presumably was intended. The result var is a GPollFunc, not a
+       GPollFunc*. Return the result!
+
+2000-12-13  Havoc Pennington  <hp@redhat.com>
+
+       * gconvert.c (open_converter): make static
+
+       * gutf8.c (g_utf8_validate): Simplify logic a bit, maybe 
+       speeding it up - now we just return FALSE if we had to bail out
+       for any reason before getting to the end of the string, as defined 
+       by a nul byte if len was -1, defined by the len otherwise. This 
+       also fixes a bug where nul bytes were not treated as invalid 
+       when the length was specified.
+
+2000-12-12  Havoc Pennington  <hp@pobox.com>
+
+       * gmain.c (g_main_context_destroy): don't try to use thread stuff
+       unless G_THREADS_ENABLED
+       (g_main_context_query): ditto
+       (g_main_context_check): ditto
+       (g_main_loop_quit): ditto
+
+Tue Dec 12 18:58:22 2000  Tim Janik  <timj@gtk.org>
+
+       * ghash.c (g_hash_table_remove): return whether a value
+       got removed.
+
+Tue Dec 12 15:18:10 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gmain.[ch]: Revert unauthorized changes.
+
+2000-12-12  Elliot Lee  <sopwith@redhat.com>
+
+       * gmain.c, gmain.h (g_main_context_new, g_main_context_destroy):
+       GMainContext useful in implementing some additional styles of
+       main loop usage.  To do this, however, Joe Hacker needs to be able
+       to create/destroy GMainContext's at will. This is just an export
+       of existing functionality, rather than any new functionality.
+
+       They are listed in the "Low level functions for implementing custom
+       main loops" section of the header file, to avoid confusing people.
+
+Sun Dec 10 10:47:11 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gmain.c (g_source_destroy_internal): Remove pollfds
+       from the context here, not when actually freeing the
+       source.
+
+       * gmain.c (g_source_unref_internal): Free source list
+       and source, call source->source_funcs->destroy().
+
+       * giochannel.c: Unreference io_channel properly.
+
+Thu Dec  7 15:22:30 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * tests/mainloop-test.c (recurser_start): Add a bunch
+       of unrefs.
+
+       * gmain.c (g_source_attach): Reference the source
+       when adding (pointed out by Elliot)
+
+2000-12-08  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * acglib.m4 (GLIB_AC_DIVERT_BEFORE_HELP): 
+       Rename from GLIB_DIVERT_BEFORE_HELP.  
+       Update to track autoconf 2.49b.
+       * configure.in: Reflect above change.
+       (AC_EGREP_HEADER): Rename from really obselete AC_HEADER_EGREP.
+       (debug_default): Replace "if test `expr ...`" with "case". 
+
+       * tests/Makefile.am (TESTS): Rearrange into other variables, and
+       include run-markup-tests.sh.
+       (TESTS_ENVIRONMENT): New.  Pass $srcdir to tests.
+       (noinst_PROGRAMS): Rename to ...
+       (check_PROGRAMS): ... this.  'automake' ensures that these are
+       built before running the tests.
+       * tests/run-markup-tests.sh: Support $srcdir != $builddir.
+
+2000-12-08  Havoc Pennington  <hp@pobox.com>
+
+       * tests/Makefile.am (TESTS): move markup-test to noinst_PROGRAMS;
+       it isn't a proper test, the proper test would be 
+       run-markup-tests.sh, but that can't go in tests, so we need 
+       a manual make check rule. Didn't do that yet.
+
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
+2000-12-06  Havoc Pennington  <hp@pobox.com>
+
+       * tests/strfunc-test.c (main): add g_strdupv test
+
+       * gstrfuncs.c (g_strdupv): Add a function to copy 
+       an array of strings
+
+Tue Dec  5 12:23:04 2000  Owen Taylor  <otaylor@redhat.com>
+
+        * gmain.[hc]: Major change in API for creating sources
+       to handle multiple main loops (GMainContext *). 
+
+       GSources are now exposed as GSource * and implemented
+       with structure derivation.
+
+       * giochannel.[ch]: Changed vtable for GIOChannel to correspond
+       to the new mainloop API, add g_io_channel_create_watch().
+        
+       * gtypes.h: Move GTimeVal here.
+
+       * gthread.h: Remove gmain.h include to avoid circularity.
+       
+        * giounix.c: Update for new GMain API.
+        
+       * giowin32.c: Update for new GMain API. (No check for
+       proper compilation or working.)
+
+       * timeloop.c timeloop-basic.c: A benchmarking program for
+       the main loop comparing the main loop against a 
+       hand-written (timeloop-basic.c) variant. 
+
+       * tests/mainloop-test.c: New torture test of mainloop.
+       
+       * docs/Changes-2.0.txt: Started. Added text about
+       changes to GMain.
+
+       * gmain.c (g_main_add_poll_unlocked): Initial fd->revents
+       to zero. (#8482, Benjamin Kahn)
+
+2000-12-01  Tor Lillqvist  <tml@iki.fi>
+
+       * {.,*}/makefile.msc.in: Include make.msc from GLib's build subdir.
+
+       * makefile.{mingw,msc}.in (glib_OBJECTS): Add gunibreak.
+
+       * glib.def: Update correspondingly.
+
+2000-11-21  Havoc Pennington  <hp@pobox.com>
+
+       * gmacros.h: Provide G_CONST_RETURN which is 'const' by default,
+       and nothing when G_DISABLE_CONST_RETURNS is defined.
+
+2000-11-29  Havoc Pennington  <hp@redhat.com>
+
+       * gunidecomp.c (COMBINING_CLASS): 
+       s/UNICODE_LAST_CHAR/G_UNICODE_LAST_CHAR/
+
+       * gunichartables.h: Update for data in Unicode 3.0.1
+
+       * gunidecomp.h: Ditto
+       
+       * gunicode.h (GUnicodeBreakType): Enum for line break properties
+       (g_unichar_break_type): Get the break property for a char
+       
+       * gunibreak.h: Autogenerated line break property tables
+
+       * gunibreak.c (g_unichar_break_type): added 
+       
+       * Makefile.am (EXTRA_DIST): dist gen-unicode-tables.pl
+
+       * Makefile.am (libglib_1_3_la_SOURCES): Add gunibreak.h, gunibreak.c
+       
+       * gen-unicode-tables.pl: Include the script to update the unicode
+       char tables
+
+2000-11-28  Elliot Lee  <sopwith@redhat.com>
+
+       * gmarkup.c: Fix warnings.
+
+       * guniprop.c, gunidecomp.c: Make warnings go away by using
+       GPOINTER_TO_INT() instead of (int).
+
+       * gcompletion.[ch]: Add g_completion_set_compare(),
+       to allow (for example) using case-insensitive completion.
+
+2000-11-28  Tor Lillqvist  <tml@iki.fi>
+
+       Patches by Hans Breuer:
+       
+       * gspawn-win32.c: Move the code for gspawn-win32-helper to its own
+       file.
+
+       * makefile.{mingw,msc}.in: Change accordingly.
+
+       * gspawn-win32-helper.c: New file.
+
+       * Makefile.am (EXTRA_DIST): Add it.
+
+       * gmarkup.c (find_current_text_end): Fix assertion not to check an
+       uninitialised variable.
+
+2000-11-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gthread.c: Set the thread data before locking the mutex, because
+       the locking call might use g_thread_self ().
+
+       * gthread.h: Do only show the location of the locking/unlocking
+       for -DG_ERRORCHECK_MUTEXES and not the name of the mutex. Add the
+       errorcheck capability for g_cond_wait and g_cond_timed_wait as
+       well.   
+
+2000-11-27  Havoc Pennington  <hp@redhat.com>
+
+       * gthread.h: Add void in empty function arg list
+
+2000-11-22  Tor Lillqvist  <tml@iki.fi>
+
+       * makefile.{mingw,msc}.in: Add gqsort.
+
+       * glib.def: Update.
+
+2000-11-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Add a surrogate for thread priorities using PID
+       niceness for systems with no thread priorities and different PIDs
+       for threads of the same process (most notably: Linux). Define
+       G_THREAD_USE_PID_SURROGATE in that case, as used by
+       gthread-posix.c. Also make the system thread bigger by
+       sizeof (long) to contain the thread's PID.
+
+       * gfileutils.c: Include stdlib.h for mkstemp prototype.
+
+       * gthread.c: Add priority range checks to the affected functions.
+
+       * gthreadpool.c: Remove unused variable.
+
+Mon Nov 20 18:55:17 2000  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtree.[hc]: Patch from David Benson <daveb@idealab.com> to add
+       user_data support to gtree functions.
+
+Mon Nov 13 18:35:52 2000  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtypes.h (GCompareFuncData): new func type to let you use user
+       data when comparing nodes.
+
+       * gslist.c (g_list_sort_with_data): new function to sort with
+       user_data. 
+
+       * glist.c (g_list_sort_with_data): new function to sort with
+       user_data. 
+
+       * garray.[ch]: Added convenience functions to sort arrays.
+
+2000-11-16  Havoc Pennington  <hp@redhat.com>
+
+       * guniprop.c (g_unichar_isspace): Use a switch here, maybe helps 
+       the compiler optimize things. Also, ' ' is a SPACE_SEPARATOR,
+       so don't special case it.
+
+2000-11-17  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add g_trash_stack entry points.
+
+Fri Nov 17 15:43:00 2000  Owen Taylor  <otaylor@redhat.com>
+
+        * Released 1.3.2
+       
+       * NEWS: Update.
+
+       * tests/Makefile.am (dist-hook): Add code to distribute
+       markup test files.
+
+2000-11-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Check for the sched.h header and include it on
+       gthread/gthread-posix.c if available.
+
+       * configure.in: Add -D_POSIX4_DRAFT_SOURCE to
+       GTHREAD_COMPILE_IMPL_DEFINES. Also add -D_POSIX4A_DRAFT10_SOURCE
+       to G_THREAD_CFLAGS. Really deploy GTHREAD_COMPILE_IMPL_DEFINES,
+       when searching for thread libs. Look for sched_* functions in
+       -lrte as well. All of that is necessary on DG/UX.
+
+       * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADERS in
+       various places to make it work more reliable, to make it accept
+       macros instead of functions etc.
+
+       * configure.in: Replace some NULL's for checks with 0 to make it
+       work without stdio.h everywhere.
+
+       * configure.in, gutils.c: changed the test for getpwuid_r to first
+       test for a posix version and then for a non-posix version. No code
+       change in gutils.c. Again this change deals better with getpwuid_r
+       being a macro and not a function. Most of the above with kind help
+       from Tethys <tet@isengard.europe.dg.com>. This fixes Bug #13403.
+       
+2000-11-14  Tor Lillqvist  <tml@iki.fi>
+
+       * gwin32.h: Make #endif comment match #ifdef.
+
+Mon Nov 13 14:00:20 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * configure.in: Up version to 1.3.2
+
+       * gconvert.h (enum GConvertError): Remove trailing ,
+
+       * gfileutils.c (g_file_open_tmp): Fix comment to 
+       properly describe return value.
+
+2000-11-13  Tor Lillqvist  <tml@iki.fi>
+
+       * config.h.win32.in: Add USE_LIBICONV.
+
+       * gconvert.c: Check G_OS_WIN32 only after including glib.h. 
+
+       * glib.def: Update.
+
+2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gthread.c (g_static_rec_mutex_*): Made recursive mutexes also
+       work when the thread system is not (yet) initialized.
+
+Sun Nov 12 18:34:32 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gconvert.[ch]: Create wrapper functions for iconv()
+       so that we can transparently use the native iconv, 
+       libiconv, or (in the future) a mini-iconv included
+       with glib.
+
+       * glib-config-2.0.in glib-2.0.pc.in: Include @ICONV_LIBS@
+
+       * INSTALL: Added note about libiconv.
+
+       * configure.in: Add checks for libiconv from pango. If
+       EILSEQ is not defined in errno.h add define for it into
+       glibconfig.h so g_iconv can use it. (Note, recompiling
+       from a system without EILSEQ to a system with EILSEQ
+       will break binary compatibility)
+
+2000-11-12  Robert Brady  <robert@suse.co.uk>
+
+       * gstrfuncs.c, gstrfuncs.h: Remove g_filename_{to,from}_utf8
+
+       * gconvert.c, gconvert.h: Add g_filename_{to,from}_utf8 and
+       g_locale_{to.from}_utf8.  The locale_ variant honours 
+       nl_langinfo(CODESET), the filename_ variant uses UTF-8 unless
+       asked otherwise.
+
+       (g_convert): Add G_CONVERT_ERROR_PARTIAL_INPUT error, if bytesread
+       != length and no bytesread pointer passed.
+
+Sun Nov 12 15:29:53 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * gfileutils.[ch]: template is a reserved word in
+       C++ s/template/tmpl/. 
+
+2000-11-11  Havoc Pennington  <hp@pobox.com>
+
+       * gmarkup.c (g_markup_parse_context_parse): Handle a long stream
+       of bytes containing no UTF-8 character starts
+
+2000-11-11  Tor Lillqvist  <tml@iki.fi>
+
+       * glib.def: Add missing entry points.
+
+       * gfileutils.c (g_mkstemp): Improve chance to generate unique
+       names with less effort a bit.
+
+       * gfileutils.h: Add g_file_open_tmp() declaration.
+
+       * testglib.c: Include <io.h> on Win32.
+
+       * makefile.mingw.in: Correct the way to invoke sub-makes.
+
+Sun Nov  5 13:20:54 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * glib-object.h: Add gtypemodule.h
+
+2000-11-11  Tor Lillqvist  <tml@iki.fi>
+
+       * gfileutils.c (g_file_open_tmp): New function, suggested by Havoc
+       earlier this month.
+       (g_mkstemp): Use only one case for letters in temp file name, as
+       this will be used on systems with case-insensitive file systems.
+
+       * testglib.c (main): Test g_mkstemp() and g_file_open_tmp().
+
+2000-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gthreadpool.c: Don't take other threads with other priorities
+       into account as changing the priority is highly
+       unportable. (Actually using it at all already is unportable, but
+       even sometimes where that works, changing priority is not
+       possible).
+
+2000-11-05  Havoc Pennington  <hp@pobox.com>
+
+       * gmarkup.h: rename G_MARKUP_FOO to
+       G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG
+
+       * gmarkup.c: don't start doc comments with "Returns"
+       
+2000-11-05  Havoc Pennington  <hp@pobox.com>
+
+       * gmarkup.c: inline docs
+       (unescape_text): properly check strtoul for failure.
+       
+       * gerror.c (g_propagate_error): Free the src error if the dest
+       location is NULL - I'm pretty sure that's what this function was 
+       supposed to do.
+
+2000-11-05  Havoc Pennington  <hp@pobox.com>
+
+       * gutils.c (g_find_program_in_path): cleanup docs, sync param 
+       names to those in the header
+
+       * gfileutils.c (g_mkstemp): clean up docs
+
+       * gshell.h: sync param names with param names in .c file
+
+       * gfileutils.h (enum GFileTest): remove trailing comma from last
+       member, confuses gtk-doc
+
+       * gmarkup.h: s/GMarkupErrorType/GMarkupError/g; to follow
+       convention
 
-        * Makefile.am, tests/Makefile.am: Add new files.
+2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gasyncqueue.c: Added documentation for asyncronous queues.
+
+       * gspawn.c: Include sys/select.h (some platforms need it for
+       select). 
+
+       * gspawn.c: Changed unportable __FUNCTION__ to the verbatim
+       function name.
+
+2000-10-31  Tor Lillqvist  <tml@iki.fi>
+
+       * gutils.c
+       * gutils.h
+       * gfileutils.c
+       * gfileutils.h: Actually, g_mkstemp() is better suited in gfileutils.
+
+2000-10-30  Tor Lillqvist  <tml@iki.fi>
+
+       * configure.in: Check for mkstemp.
+
+       * gutils.c (g_mkstemp): New function. If HAVE_MKSTEMP, just call
+       it, otherwise use code lifted from glibc.
+
+       * gutils.h: Declare it.
+
+       * glib.def: Here, too. Plus two missing functions.
+
+2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gcache.h, gcache.c, ghash.h, ghash.c, grel.c, grel.h, gtypes.h:
+       Introduced new function type GEqualFunc to return TRUE for equal
+       params. This is now used instead of GCompareFunc (which should
+       work akin to strcmp) here. This kind of fixes Bug #14412. Note
+       that technically GCompareFunc and GEqualFunc are still the same
+       types, as gint == gboolean.
+
+       * ghash.h, gutils.c: g_int_equal and g_direct_equal now return
+       gboolean to be really become GEqualFunc.
+
+       * gscanner.c, testglib.c, tests/hash-test.c: Some tiny changes to
+       follow the above change.
+
+2000-10-27  Tor Lillqvist  <tml@iki.fi>
+
+       * makefile.{mingw,msc}.in (glib_OBJECTS): Add gmarkup.
+
+       * glib.def: Add missing functions.
+
+       * tests/makefile.{mingw,msc}.in (TESTS): Add markup-test.
+
+2000-10-24  Havoc Pennington  <hp@pobox.com>
+
+       * gmarkup.h, gmarkup.c: New module to parse a simple
+       markup language
        
+       * Makefile.am: add gmarkup.h, gmarkup.c
+
+       * tests/Makefile.am: add markup-test
+
+       * gstring.h (g_string_new_len): new function to create a string
+       with a length
+       (g_string_new): avoid a gratuitous realloc
+
+2000-10-26  Tor Lillqvist  <tml@iki.fi>
+
+       * makefile.{mingw,msc}.in: Cosmetics.
+
+2000-10-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gstrfuncs.c (g_strsplit): When the string is ended by a
+       delimiter, return an extra empty string just like for a delimiter
+       at the start of the string. This makes the function behave more
+       consistent and also fixes Bug #15026.
+
+Tue Oct 24 22:09:14 2000  Tim Janik  <timj@gtk.org>
+
+       * glib-object.h: added newly added gobject/ headers.
+
+       * gmesage.c: print g_message() output to stderr instead of stdout.
+
+2000-10-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Use one = instead of two, which is plainly wrong.
+
+2000-10-19  Tor Lillqvist  <tml@iki.fi>
+
+       * makefile.msc.in: Pass -DGSPAWN_HELPER when building it. Link
+       with user32.lib.
+
+       * gspawn-win32.c
+       * gfileutils.c: Make them compile with picky MSVC.
+
+       * gwin32.h: New file. Move Win32-only stuff that isn't related to
+       GIOChannels here from giochannel.h.
+
+       * Makefile.am: Add it here.
+
+       * giochannel.h: Move stuff to gwin32.h.
+
+       * glib.h: On Win32, include gwin32.h.
+
+Mon Sep 11 10:03:24 2000  Owen Taylor  <otaylor@redhat.com>
+
+       * glib.h convert.c (g_convert_with_fallback): Change
+       ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().
+
+       * docs/reference/glib/glib-sections.txt
+       docs/reference/glib/glib-docs.sgml Update for g_convert,
+       g_unicode_validate.
+
+2000-10-16  Tor Lillqvist  <tml@iki.fi>
+
+       * glibconfig.h.win32.in: Remove alloca stuff from here. galloca.h
+       takes care of it, correctly.
+
+       * giowin32.c (reader_thread): Some more debugging output.
+       (g_io_channel_win32_poll): Remove unused vars.
+
+       * gfileutils.c: Changes for Win32, with no unistd.h and no
+       S_ISLNK().
+
+       * gspawn-win32.c: Implementation of the g_spwan_* functions for
+       Win32. Due to the general non-Unixness of Win32, much of the
+       functionality that is relatively clean to implement on Unix, is
+       hard to do on Win32. We must use a separate helper program to
+       change directory, close extra file descriptors, redirect the std
+       ones, as needed, and only then start the child process. No child
+       process pid can be returned, unfortunately. Or if we used
+       CreateProcess directly, it probably could. (Now we use the spawnv*
+       functions from msvcrt.)
+
+       * Makefile.am (EXTRA_DIST): Add gspawn-win32.c
+
+       * glib.def: Add new entry points.
+
+       * glib.def
+       * giowin32.c: Remove g_io_channel_win32_wait_for_condition(),
+       g_io_channel_win32_poll() subsumes it.
+
+       * gbacktrace.h: G_BREAKPOINT for MSVC (on the ix86).
+
+       * gwin32.c (g_win32_getlocale): Use "sp" for
+       LANG_CROATIAN+SUBLANG_SERBIAN_LATIN.
+
+       * makefile.{mingw,msc}.in (glib_OBJECTS): Add new files.
+       Add gspawn-win32-helper.exe rule.
+
+       * tests/makefile.{mingw,msc}.in (TESTS): Add shell-test and
+       spawn-test.
+
+       * tests/spawn-test.c: (run_tests): On Win32, don't try to run
+       /bin/sh, but ipconfig (no special significance in choosing that,
+       just a program that outputs something to stdout).
+
+2000-10-15  Raja R Harinath  <harinath@cs.umn.edu>
+
+       Remove need for acconfig.h, and misc. cleanups.
+       * acglib.m4 (GLIB_SIZEOF): Add 'autoheader' comment to
+       AC_DEFINE_UNQUOTED.
+       (GLIB_BYTE_CONTENTS): Likewise.
+
+       * configure.in: Add 'autoheader' comments to all AC_DEFINE(...)
+       and AC_DEFINE_UNQUOTED(...) lines.
+       Replace AC_MSG_CHECKING/AC_CACHE_VAL with AC_CACHE_CHECK.
+       (AM_PROG_LIBTOOL): Move after AC_PROG_CC.
+       
+       * acconfig.h: Empty out.
+
+       * Makefile.am (BUILT_EXTRA_DIST): New variable.  List 'dist'able
+       files that are created in the builddir.
+       (dist-hook): Handle those files.
+       (libglib_1_3_la_SOURCES): Remove @ALLOCA@.  @ALLOCA@ should only
+       be used in an _LDADD or _LIBADD, since it expands (if necessary)
+       to 'alloca.o'.
+
+       * tests/Makefile.am (BUILT_EXTRA_DIST): New variable.
+       (dist-hook): Handle $(BUILT_EXTRA_DIST).
+       
+2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * grand.c: Added inline documentation. 
+
+       * gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
+       g_node_insert_after and g_find_program_in_path resp., which
+       mysteriously disappeared during the glib.h dissection.
+
+2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glibconfig.h.win32.in: Adapted accordingly to header separation
+       and GLIB_HAVE_ALLOCA_H renaming.
+
+       * Makefile.am: Added the new headers to glibinclude_HEADERS.
+
+       * glib.h: Forgot to include gerror.h.
+
+       * glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
+       gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
+       ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
+       gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
+       grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
+       gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
+       into many header files mostly according to the resp. *.c-files.
+       
+       * gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
+       of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
+       __END_DECLS.
+
+       * configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
+       gunicode.h, : Changed guard-macro names to something more
+       consistent.
+
+       * configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
+
+       * configure.in: Defined GLIB_HAVE_ALLOCA_H instead of including
+       alloca.h in glibconfig.h, GLIB_HAVE_ALLOCA_H is used in glib.h.
+
+       * configure.in: Removed cruft from old threading code.
+
+2000-10-09  Raja R Harinath  <harinath@cs.umn.edu>
+
+       Work with beta autoconf 2.50.
+       * configure.in (GLIB_MAJOR_VERSION): Use GLIB_DIVERT_BEFORE_HELP
+       instead of AC_DIVERT_PUSH(),AC_DIVERT_POP.
+       (AC_CHECK_HEADERS): Remove redundant AC_DEFINE(HAVE_...).
+       (REALLOC_0_WORKS): Move AC_DEFINE outside AC_CACHE_VAL.
+       (dlopen): Quote nested AC_CHECK_... calls.
+
+       * acglib.m4 (GLIB_TR_SH, GLIB_TR_CPP): Utility macros copied from
+       beta autoconf 2.50.
+       (GLIB_DIVERT_BEFORE_HELP): New macro that works both with autoconf
+       2.13 and beta autoconf 2.50.
+       (GLIB_SIZEOF, GLIB_BYTECONTENTS): Use GLIB_TR_*.
+
+       * Makefile.am (CONFIGURE_DEPENDENCIES): Use this to specify
+       that 'configure' depends on acglib.m4.
+
+2000-10-09  Havoc Pennington  <hp@redhat.com>
+
+       * Makefile.am, tests/Makefile.am: Add new files.
+
        * tests/spawn-test.c, tests/shell-test.c: new tests for
        the shell/spawn stuff
 
 
        * makefile.msc.in: Revamp to be like makefile.mingw.in, make
        the MSVC build actually work again.
-       
+
        * gmodule/makefile.msc.in
        * gobject/makefile.msc.in
        * gthread/makefile.msc.in: New files, like their mingw counterparts.
        * gmodule/Makefile.am
        * gobject/Makefile.am
        * gthread/Makefile.am: Make and distribute them.
-       
+
        * */makefile.mingw.in: Allow override of GLib version number from
        the build/win32/module.defs file.
-       
+
        * glib.def: Add new entry point.
 
        * tests/gio-test.c (main): Fix the Win32-only code to use current
        API, g_io_channel_win32_make_pollfd() and g_io_channel_win32_poll().
 
        Fixes from Hans Breuer:
-       
+
        * glib.h (struct DIR): Keep the last readdir result cached inside
        the DIR struct, to enable several DIRs being open simultaneously.
 
 
 2000-09-29  Jonathan Blandford  <jrb@redhat.com>
 
-       * gnode.c (g_node_insert_after): Added function to keep symetry
+       * gnode.c (g_node_insert_after): Added function to keep symmetry
        with g_node_insert_before. 
 
 2000-09-29  Martin Baulig  <baulig@suse.de>
        (GConvertError): generic error is conventionally called
        _FAILED rather than _OTHER, at least at the moment, 
        according to GError docs in docs/reference.
-       
+
        * gconvert.c: s/_OTHER/_FAILED/
-       
+
 2000-09-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Adjusted the test for an unimplemented
        statically as it might call a function. So do it at first call.
 
 Tue Sep 26 2000 Elliot Lee <sopwith@redhat.com>
+
        * glib.h: Add G_GNUC_PURE macro (but don't use it anywhere).
 
 Mon Sep 25 2000 Elliot Lee <sopwith@redhat.com>
+
        * garray.c, glib.h, gmem.c: Add a few missing G_GNUC_CONST's.
 
 2000-09-21  Tor Lillqvist  <tml@iki.fi>
@@ -161,7 +993,7 @@ Mon Sep 25 2000 Elliot Lee <sopwith@redhat.com>
 
        * glib.h: Only use the gcc-variable-macro-argument-extension for
        gcc >= 2.4. Both patches from Jonas Oberg <jonas@gnu.org>.
-                                                  
+
 Mon Sep 18 10:58:21 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gutf8.c: Implement g_ucs4_to_utf8 which was in
@@ -171,7 +1003,7 @@ Sun Sep 17 2000 Elliot Lee <sopwith@redhat.com>
 
        * glib.h configure.in: Define g_alloca() as an
        alloca-that-works-anywhere.
-       
+
        * gconvert.c: Fix warnings which could have caused problems on
        64-bit platforms.
 
@@ -185,7 +1017,7 @@ Sun Sep 10 12:37:40 2000  Owen Taylor  <otaylor@redhat.com>
 
        Also add g_convert_with_fallback() to take care of conversions 
        where we accept some loss going to the target encoding.
-       
+
 2000-09-10  Havoc Pennington  <hp@redhat.com>
 
        * gutf8.c (g_utf8_validate): Add this function.
@@ -243,7 +1075,7 @@ Tue Sep  5 20:16:27 2000  Owen Taylor  <otaylor@redhat.com>
        * gstring.c (g_string_free): Use g_return_val_if_fail instead of
        g_return_if_fail, as the function now is supposed to return
        something.
-       
+
        * gerror.c, gerror.h (g_propagte_error): Added function
        g_propagte_error to hand over local errors to the calling
        function.
@@ -252,12 +1084,12 @@ Tue Sep  5 20:16:27 2000  Owen Taylor  <otaylor@redhat.com>
        functions.
 
        * gthread.c, gthreadpool.c, glib.h: Enable error reporting for
-       thread creation, namly for g_thread_create, g_thread_pool_new,
+       thread creation, namely for g_thread_create, g_thread_pool_new,
        g_thread_pool_push and g_thread_pool_set_max_threads.
 
        * tests/thread-test.c, tests/threadpool-test.c: Adapted
        accordingly.
-       
+
 2000-08-31  Tor Lillqvist  <tml@iki.fi>
 
        * glib.h
@@ -289,17 +1121,18 @@ Tue Sep  5 20:16:27 2000  Owen Taylor  <otaylor@redhat.com>
 2000-08-25 Elliot Lee <sopwith@redhat.com>
 
        * glib.h, gunicode.h, gmodule/gmodule.h:
-       : Mark the following functions G_GNUC_CONST (to allow
-       optimization) because their results are a function of only their parameters:
-       g_int_hash, g_int_equal, g_direct_hash, g_direct_equal, g_quark_to_string,
-       g_date_is_leap_year, g_date_days_in_month, g_date_monday_weeks_in_year,
-       g_date_sunday_weeks_in_year, g_spaced_primes_closest, g_unichar_is*,
-       g_unichar_to*, g_unichar_*digit_value, g_unichar_type
+       Mark the following functions G_GNUC_CONST (to allow optimization)
+       because their results are a function of only their parameters: 
+       g_int_hash, g_int_equal, g_direct_hash, g_direct_equal,
+       g_quark_to_string, g_date_is_leap_year, g_date_days_in_month,
+       g_date_monday_weeks_in_year, g_date_sunday_weeks_in_year,
+       g_spaced_primes_closest, g_unichar_is*, g_unichar_to*,
+       g_unichar_*digit_value, g_unichar_type
 
 2000-08-21 Elliot Lee <sopwith@redhat.com>
 
-       * gobject/Makefile.am, gobject/gobject-query.c, gobject/gparamspecs.c: Fix inclusion of
-       config.h
+       * gobject/Makefile.am, gobject/gobject-query.c,
+       gobject/gparamspecs.c: Fix inclusion of config.h
 
 Mon Aug 21 14:46:23 2000  Owen Taylor  <otaylor@redhat.com>
 
@@ -364,19 +1197,19 @@ Mon Aug 21 14:39:36 2000  Owen Taylor  <otaylor@redhat.com>
 
 Sun Aug  6 20:06:02 2000  Tim Janik  <timj@gtk.org>
 
-        * gmessages.c (g_log_domain_check_free): keep *last updated while
-        running through the domain list, so we don't screw up the removal,
-        patch provided by Gady Kozma <gadykozma@hotmail.com>.
+       * gmessages.c (g_log_domain_check_free): keep *last updated while
+       running through the domain list, so we don't screw up the removal,
+       patch provided by Gady Kozma <gadykozma@hotmail.com>.
 
 Sun Aug  6 20:03:41 2000  Tim Janik  <timj@gtk.org>
 
-        * gmessages.c (g_log_remove_handler): keep *last updated while running
-        through the handler list, so we don't screw up the removal.
+       * gmessages.c (g_log_remove_handler): keep *last updated while running
+       through the handler list, so we don't screw up the removal.
 
 Sun Jul 30 16:54:13 2000  Owen Taylor  <otaylor@redhat.com>
 
-        * gunicode.h: Fix stray character
-       
+       * gunicode.h: Fix stray character
+
        * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
        which case we just compute the length.
 
@@ -386,9 +1219,9 @@ Sun Jul 30 16:54:13 2000  Owen Taylor  <otaylor@redhat.com>
 
 2000-07-31  Havoc Pennington  <hp@redhat.com>
 
-        * glib-2.0.pc.in, gobject-2.0.pc.in, gmodule-2.0.pc.in,
+       * glib-2.0.pc.in, gobject-2.0.pc.in, gmodule-2.0.pc.in,
        gobject-2.0.pc.in: pkg-config data files         
-       
+
        * Makefile.am: Install/dist the .pc files
 
        * configure.in: Output the .pc files
@@ -422,14 +1255,14 @@ Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
        the polling routine eventually notices. Meanwhile, the data being
        read is stored in a circular buffer, from where the IO channel's
        read() method picks it up.
+
        If the buffer fills up the reading thread has to wait for space
        becoming available. For this another Win32 Event is used. The IO
        Channel's read() method signals this when it has read some data
        out of the buffer.
 
        The separate reader thread(s), and the circular buffer(s) with
-       associated events mean lots of possibilities for fun parallellism
+       associated events mean lots of possibilities for fun parallelism
        errors. But it seems to work OK, i.e. GIMP runs.
 
        * gmain.c: Small changes to the Win32 polling function.
@@ -445,9 +1278,9 @@ Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
        * glib.h: Update documentation for IO Channels on Win32. Remove
        the declarations for the as of now obsolete old functions related
        to IO Channels for pipes with "wakeup" messages.
-       
+
        * glib.def: Some new functions.
-       
+
        * tests/gio-test.c: New file, to test GIOChannel and main loop.
 
        * tests/Makefile.am
@@ -458,7 +1291,7 @@ Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
        * giowin32.c: Compile in the debugging code all the time, but only
        output debug messages if told so. Add (unadvertised) function to
        turn on/off debug messages for a channel.
-       
+
        (buffer_read): Don't loop. It is expected behaviour to return a
        short read occasionally, for instance when reading from
        pipes. It's the calling code that should loop if it *knows* how
@@ -468,7 +1301,7 @@ Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
        (recv_message): Loop calling g_io_channel_read() (in a new
        function read_all()) until we have all the bytes we want (that we
        know the writer has written/will write).
-       
+
 Thu Jul 27 05:15:11 2000  Tim Janik  <timj@gtk.org>
 
        * gstrfuncs.c (g_strlcpy, g_strlcat): completed tor's fix
@@ -496,18 +1329,18 @@ Wed Jul 26 05:47:48 2000  Tim Janik  <timj@gtk.org>
        * glib.h: added g_strlcat() and g_strlcpy() wrappers, supplied by
        David Wheeler <dwheeler@ida.org>:
 
-        * glib.h, gstrfuncs.c: added g_strlcpy and g_strlcat to support
-          safe manipulation of fixed-length string buffers.
-          These functions were originally developed by Todd Miller to simplify
-          development of security-related programs, and
-          are available on many (but not all) Unix-like systems,
-          including OpenBSD, FreeBSD, and Solaris.  See
-          ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
-          and http://www.openbsd.org/security.html.
-          If there's a strlcpy/strlcat on the system, it's called, otherwise
-          an implementation is provided.
+       * glib.h, gstrfuncs.c: added g_strlcpy and g_strlcat to support
+         safe manipulation of fixed-length string buffers.
+         These functions were originally developed by Todd Miller to simplify
+         development of security-related programs, and
+         are available on many (but not all) Unix-like systems,
+         including OpenBSD, FreeBSD, and Solaris.  See
+         ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
+         and http://www.openbsd.org/security.html.
+         If there's a strlcpy/strlcat on the system, it's called, otherwise
+         an implementation is provided.
 
-        * testglib.c: Added tests for g_strlcpy, g_strlcat.
+       * testglib.c: Added tests for g_strlcpy, g_strlcat.
 
 Wed Jul 26 05:03:24 2000  Tim Janik  <timj@gtk.org>
 
@@ -554,7 +1387,7 @@ Wed Jul 26 00:46:03 2000  Tim Janik  <timj@gtk.org>
        deprecated. They will issue an warning once, when compiled with
        G_ENABLE_DEBUG. This fixes Bug #3883. For discussion see
        http://mail.gnome.org/pipermail/gtk-devel-list/2000-April/003139.html
-       
+
 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in, glib.h: glibconfig.h and glib.h now include files
@@ -604,7 +1437,7 @@ Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
 
        * Makefile.am gobject/Makefile.am gmodule/Makefile.am:
        Move include files into /usr/include/glib-2.0.
-       
+
 Thu Jul  6 18:54:49 2000  Owen Taylor  <otaylor@redhat.com>
 
        * docs/Makefile.am (EXTRA_DIST): Remove info files
@@ -676,10 +1509,10 @@ Mon Jul  3 17:18:19 2000  Owen Taylor  <otaylor@redhat.com>
 
 Thu Jun 29 15:57:28 2000  Owen Taylor  <otaylor@redhat.com>
 
-        * NEWS: updated
+       * NEWS: updated
 
        * Makefile.am: added snapcheck target to go along with snapshot
-       
+
        * gstring.c glib.h (g_string_hash): Add g_string_hash to 
        go along with g_string_equal.
 
@@ -748,26 +1581,26 @@ Mon May 29 14:10:35 2000  Owen Taylor  <otaylor@redhat.com>
 
 Fri May 19 11:39:29 2000  Tim Janik  <timj@gtk.org>
 
-        * gutils.c (g_snprintf):
-        (g_vsnprintf): added argument assertments.
+       * gutils.c (g_snprintf):
+       (g_vsnprintf): added argument assertments.
 
-        * gstring.c (g_string_assign): added argument assertments.
-        (g_string_truncate): make len a guint.
+       * gstring.c (g_string_assign): added argument assertments.
+       (g_string_truncate): make len a guint.
 
 Fri May 19 09:00:44 2000  Tim Janik  <timj@gtk.org>
 
-        * gmem.c (g_free): fixed SIZEOF_LONG==4 assumption with
-        ENABLE_MEM_CHECK, from Art Haas <ahaas@neosoft.com>.
+       * gmem.c (g_free): fixed SIZEOF_LONG==4 assumption with
+       ENABLE_MEM_CHECK, from Art Haas <ahaas@neosoft.com>.
 
-        * gslist.c (g_slist_reverse): shut up compiler.
+       * gslist.c (g_slist_reverse): shut up compiler.
 
-        * gscanner.c (g_scanner_get_token_ll): removed inline assignment.
+       * gscanner.c (g_scanner_get_token_ll): removed inline assignment.
 
-        * garray.c: remove index>=0 checks for unsigned indices.
+       * garray.c: remove index>=0 checks for unsigned indices.
 
-        * gmain.c (g_idle_prepare): timeout assignment fix.
+       * gmain.c (g_idle_prepare): timeout assignment fix.
 
-        * gtree.c (g_tree_node_rotate_right): shut up compiler.
+       * gtree.c (g_tree_node_rotate_right): shut up compiler.
 
 2000-05-13  Tor Lillqvist  <tml@iki.fi>
 
@@ -794,8 +1627,8 @@ Fri May 19 09:00:44 2000  Tim Janik  <timj@gtk.org>
 
 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
 
-        * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
-        broken and require an empty arg, give it to them.
+       * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
+       broken and require an empty arg, give it to them.
 
 Fri Apr 28 23:54:35 2000  Tim Janik  <timj@gtk.org>
 
@@ -858,7 +1691,7 @@ Wed May 10 19:52:44 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gasyncqueue.c: New File implementing an asynchronous queue to be
        used for asynchronous inter-thread communication.
-       
+
        * gthreadpool.c: New File implementing a thread pool to be used
        for distributing work among several threads. 
 
@@ -870,7 +1703,7 @@ Wed May 10 19:52:44 2000  Owen Taylor  <otaylor@redhat.com>
        the thread pool.
 
        * tests/Makefile.am: Changed accordingly.
-       
+
 2000-04-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * configure.in: Look for both pthread_create and pthread_join in
@@ -912,9 +1745,9 @@ Wed May 10 19:52:44 2000  Owen Taylor  <otaylor@redhat.com>
 
 Wed Apr 19 08:32:32 2000  Tim Janik  <timj@gtk.org>
 
-        * gscanner.c (g_scanner_new): make sure that
-        scanner->config->cset_skip_characters is "" instead of NULL, so we
-        don't segfault further on.
+       * gscanner.c (g_scanner_new): make sure that
+       scanner->config->cset_skip_characters is "" instead of NULL, so we
+       don't segfault further on.
 
 2000-04-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
@@ -937,7 +1770,7 @@ Wed Apr 19 08:32:32 2000  Tim Janik  <timj@gtk.org>
        memory released by the user, but cached by GLib. This lets a
        garbage collector have a more correct view of the actually used
        memory.
-       
+
        * garray.c, glib.h: Added g_(array|ptr_array|byte_array)_sized_new
        functions, that reserve a certain amount of memeory for the array
        at creation time to avoid reallocation. Fixes bug #6707 from
@@ -1026,7 +1859,7 @@ Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>
        handling of priorities for older solaris versions and posix
        threads. Thanks to Wan-Teh Chang <wtc@netscape.com> for suggesting
        some of those changes.
-       
+
        * config.guess, config.sub, ltconfig, ltmain.sh:
        Upgrade to libtool 1.3.4.
 
@@ -1075,7 +1908,7 @@ Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>
        * configure.in: Don't use priorities for threads, when the
        minimal/maximal priorities couldn't be determined at configure
        time.
-       
+
        * configure.in, gthread.c: Always define GSystemThread in
        glibconfig.h to represent a system thread.
 
@@ -1091,14 +1924,14 @@ Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>
 
        * gthread.c (g_thread_self): Do not test the system_thread to be
        non-zero to speed things up.
-       
+
        * gthread.c (g_mutex_init): Therefore set the system_thread of the
        main thread here.
 
        * tests/thread-test.c: Rerun all tests once again, but this time
        we fool the system into thinking, that the available thread system
        is not native, but userprovided.
-       
+
 2000-03-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
        * gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
@@ -1149,14 +1982,14 @@ Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
 Fri Jan 28 11:37:41 2000  Owen Taylor  <otaylor@redhat.com>
 
-        Bug #4156 - Changes vaguely modelled after Scott Gifford's patch
+       Bug #4156 - Changes vaguely modelled after Scott Gifford's patch
 
-        * gtimer.c (g_timer_elapsed): Never report negative times -
-        clip times to 0.
+       * gtimer.c (g_timer_elapsed): Never report negative times -
+       clip times to 0.
 
-        * gmain.c (g_timeout_prepare): Guard against unexpected
-        clock shifts by never setting a timeout of more than
-        data->interval msecs.
+       * gmain.c (g_timeout_prepare): Guard against unexpected
+       clock shifts by never setting a timeout of more than
+       data->interval msecs.
 
 2000-02-27  Tor Lillqvist  <tml@iki.fi>
 
@@ -1177,7 +2010,7 @@ Fri Jan 28 11:37:41 2000  Owen Taylor  <otaylor@redhat.com>
 
 Thu Feb 17 12:53:44 2000  Tim Janik  <timj@gtk.org>
 
-        * gstring.c: changed g_str_hash() to a 31 bit version based on
+       * gstring.c: changed g_str_hash() to a 31 bit version based on
        a submission by Karl Nelson and hand optimized ad absurdum by
        various people ;)
 
@@ -1204,7 +2037,7 @@ Thu Feb 17 12:53:44 2000  Tim Janik  <timj@gtk.org>
 
        * glib.h: Declare g_string_insert_len, g_string_append_len,
        g_string_prepend_len
-       
+
 Sun Feb 13 08:16:47 2000  Tim Janik  <timj@gtk.org>
 
        * configure.in: wtf??? someone destroyed the configure.in, reverting to
@@ -1217,7 +2050,7 @@ Sun Feb 13 08:16:47 2000  Tim Janik  <timj@gtk.org>
        * Makefile.am
        * gmodule/Makefile.am
        * gthread/Makefile.am: Change accordingly.
-       
+
        * makefile.cygwin: Corresponding changes, some cleanup.
 
 2000-02-05  Tor Lillqvist  <tml@iki.fi>
@@ -1318,9 +2151,9 @@ Sun Jan  9 13:28:36 2000  Tim Janik  <timj@gtk.org>
 
 1999-11-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
-        * configure.in: Make the test for getpwuid_r work on newer AIX
-        versions, too. Still works on Solaris and Linux. Patch from Craig
-        Rodrigues <rodrigc@mediaone.net>.
+       * configure.in: Make the test for getpwuid_r work on newer AIX
+       versions, too. Still works on Solaris and Linux. Patch from Craig
+       Rodrigues <rodrigc@mediaone.net>.
 
 1999-11-08  Tor Lillqvist  <tml@iki.fi>
 
@@ -1366,13 +2199,13 @@ Sun Oct 31 18:55:01 1999  ape@spacetec.no  (Asbjorn Pettersen)
 
 Sun Oct 17 18:11:40 1999  Tim Janik  <timj@gtk.org>
 
-        * gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
-        destroy() notification here as well.
+       * gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
+       destroy() notification here as well.
 
 1999-10-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
-        * gdataset.c (g_datalist_clear_i): Avoid Freezing, when g_datalist
-        is called recursivly. Reported by Ola Andersson <rand@ling.umu.se>.
+       * gdataset.c (g_datalist_clear_i): Avoid Freezing, when g_datalist
+       is called recursivly. Reported by Ola Andersson <rand@ling.umu.se>.
 
 Tue Oct 12 14:17:12 1999  Tim Janik  <timj@gtk.org>
 
@@ -1391,8 +2224,8 @@ Tue Oct 12 14:17:12 1999  Tim Janik  <timj@gtk.org>
 
 Tue Oct 12 12:16:12 1999  Tim Janik  <timj@gtk.org>
 
-       * gmessages.c (g_printf_string_upper_bound): completly new implementation
-       for printf string upper bounds calculation.
+       * gmessages.c (g_printf_string_upper_bound): completly new
+       implementation for printf string upper bounds calculation.
        we handle all glibc 2.1 format specifiers now, except for positional
        parameters (%nn$...) and wide char strings, plus some obscure upper
        case variants of the standard conversions. this fixes a lot of
@@ -1420,8 +2253,8 @@ Tue Oct 12 03:34:40 1999  Tim Janik  <timj@gtk.org>
        we handle G_LITTLE_ENDIAN and G_BIG_ENDIAN as of currently. ieee floats
        and doubles are supported (used for storage) by at least intel, ppc and
        sparc, reference:
-        http://twister.ou.edu/workshop.docs/common-tools/numerical_comp_guide/ncg_math.doc.html
-       
+       http://twister.ou.edu/workshop.docs/common-tools/numerical_comp_guide/ncg_math.doc.html
+
 Mon Oct 11 18:01:49 1999  Tim Janik  <timj@gtk.org>
 
        * configure.in: added additional checks to figure sizes of size_t,
@@ -1479,15 +2312,16 @@ Wed Sep 22 01:53:18 1999  Tim Janik  <timj@gtk.org>
        for erroring out on this, instead of just issueing a warning).
 
        * glib.h (g_trash_stack_pop): use uncasted NULL again.
-       
+
 Fri Sep 17 10:24:45 1999  Tim Janik  <timj@gtk.org>
 
-       * gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied patch
-       from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem chunk's area
-       sizes to be a multitiple of atom_size, and to eliminate the MAX_MEM_AREA
-       restriction of 65536 bytes. we also catch cases where users pass an area
-       size < atom size with a return_if_fail statement now (which is ok,
-       because previously this lead to memory corruption anyways).
+       * gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied
+       patch from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem
+       chunk's area sizes to be a multitiple of atom_size, and to
+       eliminate the MAX_MEM_AREA restriction of 65536 bytes. we also
+       catch cases where users pass an area size < atom size with a
+       return_if_fail statement now (which is ok, because previously this
+       lead to memory corruption anyways).
 
 Thu Sep 16 13:19:54 1999  Tim Janik  <timj@gtk.org>
 
@@ -1601,7 +2435,7 @@ Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
        deprecated g_strescape(), we need the SunOS variants here.
 
        * gdate.c: added DEBUG_MSG() macro to wrap old messages.
-       
+
        * *.*: CVS merges.
 
        * upgrade to libtool 1.3.3.
@@ -1618,7 +2452,7 @@ Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
 
        * makefile.cygwin.in
        * tests/makefile.cygwin.in: Remove .gcc from DLL name.
-       
+
 1999-07-13  Tor Lillqvist  <tml@iki.fi>
 
        * README.win32: Correct URL for mingw runtime sources.
@@ -1658,7 +2492,7 @@ Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
 
        * glib.h: Updated the commentary about g_memmove to be right and
        more GLib-like.
-       
+
        * configure.in: Removed test for rand_r, as it isn't used anymore.
 
 1999-06-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
@@ -1694,7 +2528,7 @@ Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
 
        * gtimer.c: Implement g_usleep on native Win32 using Sleep (which
        only has millisecond granularity, though).
-       
+
        * makefile.cygwin.in
        * makefile.msc.in: Update pthreads snapshot version. File
        name changes. Remove testgthread.
@@ -1811,7 +2645,7 @@ Mon May 10 22:03:52 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
        win32-related files that are made from corresponding .in files.
        Is there a cleaner way than explicitly writing rules that invoke
        config.status?
-       
+
 Sat May  1 10:18:01 PDT 1999 Manish Singh <yosh@gimp.org>
 
        * acinclude.m4
@@ -1829,7 +2663,7 @@ Sat May  1 10:18:01 PDT 1999 Manish Singh <yosh@gimp.org>
 
        * configure.in: Also substitute @GLIB_INTERFACE_AGE@ and
        @GLIB_BINARY_AGE@ (needed in config.h.win32).
-       
+
        * glibconfig.h.win32.in: Use static mutex structure and initial
        value corresponding to the 1999-04-07 snapshot of pthreads-win32.
 
@@ -1896,7 +2730,7 @@ Sun Apr 11 15:07:34 1999  Tim Janik  <timj@gtk.org>
 
        * configure.in: bumped versin number to GLib 1.2.2, interface 2,
        binary 2.
-       
+
        * NEWS: updates.
 
 Sun Apr 11 14:37:06 1999  Tim Janik  <timj@gtk.org>
@@ -1906,8 +2740,8 @@ Sun Apr 11 14:37:06 1999  Tim Janik  <timj@gtk.org>
 Sat Apr 10 19:30:50 1999  Tim Janik  <timj@gtk.org>
 
        * glib.h: removed braces around inline strings for the G_GNUC_FUNCTION
-       and G_GNUC_PRETTY_FUNCTION macros, so the macros can be used for compile
-       time string concatenation.
+       and G_GNUC_PRETTY_FUNCTION macros, so the macros can be used for
+       compile time string concatenation.
 
 Thu Apr  8 19:53:19 1999  Owen Taylor  <otaylor@redhat.com>
 
@@ -1926,7 +2760,7 @@ Thu Apr  8 19:53:19 1999  Owen Taylor  <otaylor@redhat.com>
        systems. Please do not merge this into 1.3 branch. It's taken care
        of differently there. Info from J. Rhett Aultman
        <cuplan@alley.gator.net>
-       
+
 Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
 
        * Released GLib 1.2.1
@@ -1945,7 +2779,7 @@ Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
          docs/glib-config.1: Removed, now generated.
 
        * configure.in: Added to output now-generated files.
-       
+
 Tue Mar 23 13:43:39 PST 1999 Manish Singh <yosh@gimp.org>
 
        * giounix.c: add user_data param to check and prepare functions
@@ -1953,8 +2787,8 @@ Tue Mar 23 13:43:39 PST 1999 Manish Singh <yosh@gimp.org>
 Mon Mar 22 03:54:43 1999  Tim Janik  <timj@gtk.org>
 
        * glib.h:
-       * gmain.c: add user_data to the GSource ->check and ->prepare functions,
-       so it can be used to e.g. pass a GPollFd.
+       * gmain.c: add user_data to the GSource ->check and ->prepare
+       functions, so it can be used to e.g. pass a GPollFd.
        (g_main_poll): only add poll records with an events mask != 0 to the
        fd_array. don't even bother calling poll_func() if fds=timeout=0.
        added debugging printouts around poll_func() invokation that can be
@@ -1979,10 +2813,10 @@ Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
        s/g_static_/g_private_/g
 
 Wed Mar 17 03:17:42 1999  Tim Janik  <timj@gtk.org>
-       
+
        * configure.in bumped versin number to GLib 1.2.1, interface 1,
        binary 1.
-       
+
        * NEWS: updates.
 
        * glib.h: added GLIB_CHECK_VERSION() macro similar to
@@ -2037,10 +2871,10 @@ Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
 
 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
-        * gutils.c (g_get_any_init): Fixed yet another bloody
-        implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
-        <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
-        test better than that, but have no idea, how to do that easily.
+       * gutils.c (g_get_any_init): Fixed yet another bloody
+       implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
+       <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
+       test better than that, but have no idea, how to do that easily.
 
 Sun Feb 21 22:11:51 CST 1999  Shawn T. Amundson <amundson@gtk.org>
 
@@ -2056,7 +2890,7 @@ Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson <amundson@gtk.org>
 Sun Feb 21 14:01:00 1999  Dr Mike <drmike@redhat.com>
 
        * Made specfile generated, tweaked slightly
-       
+
 Sat May  8 06:00:17 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
 
        * configure.in
@@ -2076,7 +2910,7 @@ Sat May  8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
          gmodule/Makefile.am
          gmodule/gmodule.c
          gmodule/gmoduleconf.h.in
-          gmodule/gmodule-beos.c
+         gmodule/gmodule-beos.c
          gthread/Makefile.am: Port to BeOS by myself and Richard Offer.
 
 1999-05-06  Tor Lillqvist  <tml@iki.fi>
@@ -2089,14 +2923,14 @@ Sat May  8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
 
        * configure.in: Also substitute @GLIB_MAJOR_VERSION@,
        @GLIB_MINOR_VERSION@, and @GLIB_INTERFACE_AGE@.
-       
+
        * Makefile.am tests/Makefile.am: Also distribute makefile.cygwin.
-       
+
        * gerror.c (g_on_error_query): On Win32, put up a MessageBox and
        then exit.
 
        * glib.def: Add a couple of functions.
-       
+
 Sat May  1 10:26:20 PDT 1999 Manish Singh <yosh@gimp.org>
 
        * acinclude.m4
@@ -2256,7 +3090,7 @@ Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
 
        * acconfig.h: Removed unnecessary macros.
 
-        * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
+       * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
        from config.h.win32 to glibconfig.h.win32. Taken from glib 1.2
        branch.
 
@@ -2271,39 +3105,39 @@ Wed Mar 17 03:14:56 1999  Tim Janik  <timj@gtk.org>
 
 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
 
-        * merges from glib-1-2:
-        
+       * merges from glib-1-2:
+
 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
 
-        * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
-        to g_return_if_fail().
-        (g_mem_profile):
-        (g_mem_chunk_print):
-        (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
-        messages.
+       * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
+       to g_return_if_fail().
+       (g_mem_profile):
+       (g_mem_chunk_print):
+       (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
+       messages.
 
-        * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
-        to g_return_if_fail().
-        * grel.c (g_*): changed a bunch of g_assert() statements to
-        g_return_if_fail() and added some extra ones to check relation != NULL.
+       * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
+       to g_return_if_fail().
+       * grel.c (g_*): changed a bunch of g_assert() statements to
+       g_return_if_fail() and added some extra ones to check relation != NULL.
 
 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
 
-        * configure.in: check for working realloc (NULL,).
-        * gmem.c (g_realloc): use malloc() for initial allocation on systems
-        where realloc(NULL,) will not work (this is the case on SunOS, reported
-        by Tom Geiger).
+       * configure.in: check for working realloc (NULL,).
+       * gmem.c (g_realloc): use malloc() for initial allocation on systems
+       where realloc(NULL,) will not work (this is the case on SunOS, reported
+       by Tom Geiger).
 
 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
 
-        * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
-        flag around the call to g_hook_free() to avoid spurious
-        warnings (happens during destruction phase).
+       * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
+       flag around the call to g_hook_free() to avoid spurious
+       warnings (happens during destruction phase).
 
 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
 
-        * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
-        Friedrich Dominicus <Friedrich.Dominicus@inka.de>
+       * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
+       Friedrich Dominicus <Friedrich.Dominicus@inka.de>
 
 1999-03-16  Timur Bakeyev  <mc@bat.ru>
 
@@ -2336,7 +3170,7 @@ Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
        lf for double). Defining G_INT_FORMAT makes sense however, as we
        might want to define gint to something different than int someday
        in the future. Idea from Sascha Brawer <sb@adasys.ch>.
-       
+
 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
 
        * gdate.c: