minor hack to cause SUBDIRS (gmodule) to be build last. we do this by
[platform/upstream/glib.git] / ChangeLog.pre-2-2
1 Mon Aug 10 02:17:19 1998  Tim Janik  <timj@gtk.org>
2
3         * Makefile.am: minor hack to cause SUBDIRS (gmodule) to be build
4         last. we do this by making all-recursive-am depend on all-am.
5
6 Sun Aug  9 15:56:11 1998  Tim Janik  <timj@gtk.org>
7
8         * configure.in: added GModule checks. generate files in gmodule/.
9         * glib-config.in: support library specifications `glib' and `gmodule'.
10         * Makefile.am: feature the gmodule/ subdir.
11
12 Wed Aug  5 10:04:29 PDT 1998 Shawn T. Amundson <amundson@gtk.org>
13
14         * Released GLib 1.1.2
15
16 Wed Aug 05 01:15:36 1998  George Lebl  <jirka@5z.com>
17
18         * testglib.c: fix 64-bitness in g_prints, sizeof doesn't
19           seem to return int so I cast it for printing, probably
20           just cosmetic
21
22 Tue Aug  4 19:54:06 PDT 1998 Shawn T. Amundson <amundson@gkt.org>
23
24         * Released GLib 1.1.1
25
26 Tue Aug  4 15:17:54 1998  Tim Janik  <timj@gtk.org>
27
28         * configure.in: version bump to 1.1.1, binary age 1, interface age 0.
29         * NEWS: updates.
30         * README: updates.
31         * INSTALL: updates and fixes.
32         * COPYING: include the GNU LGPL, rather than shipping an empty file.
33         * AUTHORS: listed original authors here, and added people who made
34         significant improvements to glib.
35
36         * glib.h:
37         * gutils.c: implement g_get_current_dir() which returns a newly
38         allocated string, instead of a g_getcwd() variant that operates
39         on a static buffer.
40         export glib_interface_age and glib_binary_age.
41         as a convenience, macro definitions have been added for
42         g_node_insert_data, g_node_insert_data_before, g_node_append_data and
43         g_node_prepend_data.
44
45         * testglib.c: minor cleanups, print current dir.
46
47 Mon Aug  3 16:02:26 1998  Tim Janik  <timj@gtk.org>
48
49         * glib.h: 
50         * gnode.c: change order of gpointer data; field in struct _GNode to
51         be partly binary compatible with GList and GSList.
52
53 1998-08-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
54
55         * garray.c (g_ptr_array_remove_index): bugfix: index check for
56         array has been wrong.
57
58 Fri Jul 31 22:17:05 1998  Tim Janik  <timj@gtk.org>
59
60         * testglib.c (g_node_test): added a GNode test.
61
62 Fri Jul 31 09:08:16 1998  Tim Janik  <timj@gtk.org>
63
64         * Makefile.am: compile gnode.c.
65
66         * glib.h: 
67         * gnode.c: added implementation of n-way trees.
68
69         * gtree.c (g_tree_traverse): added a warning to the switch() statement
70         which says that G_LEVEL_ORDER is not implemented.
71
72 Mon Jul 27 00:17:30 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
73
74         * Released GLib 1.1.0
75
76 Mon Jul 27 01:02:27 1998  Tim Janik  <timj@gtk.org>
77
78         * glib.h: #if 0'ed out the GTime definition, until it is definitively
79         needed. #if 0'ed out the g_getcwd() version, because it is the wrong
80         implementation.
81
82 Sat Jul 25 16:09:00 1998  Mark Crichton <crichton@expert.cc.purdue.edu>
83         
84         * glib.h: gtime changed to g_time.  gtime is used in 
85         /usr/include/time.h in NetBSD, causing multiple headaches.
86         If this isn't the right way of fixing it.... ;)
87
88 Thu Jul 23 00:29:14 1998  Tim Janik  <timj@gtk.org>
89
90         * glib.h: 
91         * gscanner.c: new functions to make a scanner scope sensitive wrt
92         symbol lookups.
93         g_scanner_scope_foreach_symbol, g_scanner_scope_lookup_symbol,
94         g_scanner_scope_remove_symbol, g_scanner_scope_add_symbol and
95         g_scanner_set_scope.
96         g_scanner_add_symbol, g_scanner_remove_symbol and
97         g_scanner_foreach_symbol are now aliases for scope 0.
98
99 Mon Jul 20 23:05:34 1998  George Lebl  <jirka@5z.com>
100
101         * glib.h: typo fixed for alphas for gint64
102
103 Tue Jul 14 09:05:18 1998  Tim Janik  <timj@gtk.org>
104
105         * glib.h:
106         * gutils.c: new fuction g_dirname() which returns a newlly
107         allocated string.
108
109 Fri Jul 10 06:33:43 1998  Tim Janik  <timj@gtk.org>
110
111         * glib.h: 
112         * gutils.h: added a bunch of utility/wrapper functions:
113         g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(),
114         g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname().
115
116         * gutils.c: removed all g_str* functions.
117         * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this
118         place. this file shall never include <unistd.h> to avoid clashes for
119         some of the g_str* functions on some OSes.
120
121 Fri Jul 10 00:29:03 EEST 1998 Lauri Alanko <nether@gimp.org>
122
123         * glib.h:
124         * ghash.c: Renamed g_hash_table_lookup_full to
125         g_hash_table_lookup_extended to conform with naming conventions.
126
127 Tue Jul  7 03:18:58 EEST 1998 Lauri Alanko <nether@gimp.org>
128
129         * glib.h:
130         * ghash.c: Generic cleanup, added a function:
131         (g_hash_table_lookup_full): Return whether the lookup succeeded,
132         and also retrieve the key and value. This allows one to
133         distinguish between failed lookup and finding a NULL, and also
134         allows one to free a key in the hash.
135
136 Mon Jul  6 10:12:05 PDT 1998 Manish Singh <yosh@gimp.org>
137
138         * ltconfig: fix for properly detecting shared lib support on
139         SunPro cc (taken from libtool 1.2.a)
140
141 Sat Jul  4 13:38:52 PDT 1998 Manish Singh <yosh@gimp.org>
142
143         * glib.h: added g_array_length
144
145 Tue Jun 30 11:58:25 1998  Tim Janik  <timj@gtk.org>
146
147         * gscanner.c (g_scanner_unexp_token): take symbol_2_token into
148         account. react on valid/invalid string pairs.
149
150 Sat Jun 27 21:55:46 PDT 1998 Manish Singh <yosh@gimp.org>
151
152         * glib.m4: ftp.glib.org -> ftp.gtk.org, since glib.org isn't
153         ours. ;)
154
155 Fri Jun 19 03:11:02 1998  Tim Janik  <timj@gtk.org>
156
157         * gdataset.c: removed g_dataset_try_key, g_dataset_force_id and
158         g_dataset_retrive_key in favour of GQuarks.
159         a GQuark is an numeric id wich is associated with a certain string.
160         (g_quark_try_string): try to get the quark associated with this string,
161         if the lookup failed return 0.
162         (g_quark_from_string): get the associated quark for a string, if there
163         isn't currently a GQuark associated with this string, then allocate a
164         new quark and return that.
165         (g_quark_from_static_string): like the above function, but the string
166         isn't strdup()ed to save memory.
167         (g_quark_to_string): get the string that is associated with a certain
168         GQuark.
169
170         * gdataset.c (g_dataset_id_set_data_full): invoke the destroy function
171         _after_ the new data has been setup.
172
173 Thu Jun 18 02:35:21 1998  Owen Taylor  <otaylor@gtk.org>
174
175         * glib.h: Changed messages for g_return_[val]_if_fail to
176         be somewhat more clear: assertion "blah" failed.
177
178 1998-06-18  Federico Mena Quintero  <federico@nuclecu.unam.mx>
179
180         * testglib.c (main): Use GINT_TO_POINTER casts to remove compiler
181         warnings.
182
183         * grel.c: #include <string.h>
184
185 Fri Jun 12 15:39:06 1998  Tim Janik  <timj@gtk.org>
186
187         * glib.h (GScanner): cleanups of the structure fields (binary
188         incompatible).
189
190 Fri Jun 12 00:39:28 1998  Josh MacDonald  <jmacd@icw.EECS.Berkeley.EDU>
191
192         * glib.h: add new hash and equal functions g_int_*.  complement
193         g_direct_hash with g_direct_equal.
194
195         * grel.c: new file, GRelations implement tuples of N-N mappings.
196         A comment in glib.h briefly describes the interface.
197
198         * ghash.c: new function, g_hash_table_size
199
200         * glib.h: new typedefs, gsize, gssize, gtime.
201
202         * garray.c: new functions implementing a simplified GArray.  This
203         GPtrArray is an array of gpointers and has functions to add and
204         remove elements, much like java.lang.Vector.
205
206         * garray.c: new functions for the single-byte special case of
207         GArray.  The functions g_byte_array* operate on arrays of bytes.
208         Internally, a GArray is used.
209
210         * testglib.c: tests for g_ptr_array, g_byte_array, and g_relation...
211
212 1998-06-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>
213
214         * gdataset.c: #include <string.h>
215
216 Thu Jun 11 04:15:31 1998  Tim Janik  <timj@gtk.org>
217
218         * glib.h:
219         * gdataset.c: new function g_dataset_retrive_key. adjusted prealloc
220         sizes, to take up less space on initial allocation.
221
222 1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
223
224         * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
225         the version from which glib's libtool forked.  Needed for people
226         who use post-1.2 alphas of libtool.
227         * configure.in (enable_mem_check, enable_mem_profile): Replace
228         `echo -n' with AC_MSG_CHECKING.
229         (fd_set): Explain test for `fd_set' better.
230
231 Wed Jun 10 19:29:51 1998  Owen Taylor  <otaylor@gtk.org>
232
233         * Makefile.am glib.m4 configure.in:
234         
235         Moved out from GTK+; added AM_PATH_GLIB macro.
236
237 Wed Jun 10 12:56:07 1998  Owen Taylor  <otaylor@gtk.org>
238
239         * glib.h: renamed g_const_pointer => gconstpointer
240
241 Tue Jun  9 17:47:33 1998  Owen Taylor  <otaylor@gtk.org>
242
243         * glib.h: Remove #error - HP/UX.
244
245 Sat May 23 19:00:01 1998  Owen Taylor  <otaylor@gtk.org>
246   [ Combination of:
247      gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>)
248      gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ]
249         
250         * glib.h ghash.c gstring.c gdataset.c gutils.c:
251         - Added new typedef g_const_pointer; expunged all incorrect
252           uses of 'const gpointer'.
253         - Fixed up warnings that that created,
254         - Changed GHashFunc and GCompareFunc to take g_const_pointer
255           arguments. (Necessary, but will cause warnings in existing
256           code until fixed)
257         - Added other new const in harmless positions.
258
259 Mon Jun  8 01:06:47 1998  Tim Janik  <timj@gtk.org>
260
261         * glib.h: added enum-helper macros for code generation.
262         added G_BREAKPOINT().
263
264 Sat Jun  6 14:09:22 PDT 1998 Manish Singh <yosh@gimp.org>
265
266         * gmem.c: commented out MEM_PROFILE and MEM_CHECK, causing weird
267         problems
268
269 Wed Jun  3 06:19:42 1998  Tim Janik  <timj@gtk.org>
270
271         * glib.h (g_chunk_new0): convenience macro, for allocating small chunks 
272         like g_chunk_new() with additional 0 initialization.
273
274 Mon Jun  1 04:43:27 1998  Tim Janik  <timj@gtk.org>
275
276         * ghash.c (g_hash_table_insert): wrote a comment describing why
277         a hash node's key should not also get replaced when overriding
278         previous entries.
279
280 Tue May 26 18:30:06 1998  Tim Janik  <timj@gtk.org>
281
282         * glib.h (g_string_sized_new): new function to controll the preallocated
283         size of a GString.
284
285         * glib.h (g_strreversed): new function to reverse a string.
286
287 Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
288 (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
289         
290         * gutils.c: Restored a missing prototype for g_vsprintf.
291
292 Wed May 20 05:02:26 1998  Tim Janik  <timj@gtk.org>
293
294         * glib.h: conditionally define NULL, FALSE and TRUE.
295         (g_mem_chunk_create): new convenience macro as a short hand for
296         g_mem_chunk_new().
297         (g_chunk_free): new convenience macro to be consistent with g_chunk_new.
298
299 Tue, 19 May 1998 09:00:02 +0200  Â§Paolo Molaro <lupus@debian.org>
300
301         * gcompletion.c: generic functions for com<TAB>pletion...
302
303 Sun May 17 10:48:27 1998  Tim Janik  <timj@gtk.org>
304
305         * gscanner.c (g_scanner_unexp_token): provide usefull default
306         specifications for identifier_spec and symbol_spec.
307
308         * glib.h: new functions g_slist_nth_data and g_list_nth_data to return
309         the data of the nth element in the list.
310
311 Fri May 15 22:31:49 1998  Tim Janik  <timj@gtk.org>
312
313         * gscanner.c (g_scanner_unexp_token): removed spurious va_end(args)
314         that for some reason didn't produce a compiler wrning on my machine
315         (is va_end undefined for i386?).
316
317 Fri May 15 12:32:08 1998  rodo  <doulik@karlin.mff.cuni.cz>
318
319         * gscanner.c: replaced some snprintf with g_snprintf
320
321 Fri May 15 00:56:59 1998  Tim Janik  <timj@gtk.org>
322
323         * glib.h: further support for gcc function attributes: G_GNUC_FORMAT,
324         G_GNUC_NORETURN and G_GNUC_CONST.
325
326         * gscanner.c (g_scanner_stat_mode): changed stat() to lstat().
327         (g_scanner_msg_handler): "\n" at end of line!
328         (g_scanner_foreach_symbol): new function to iterate over the symbol
329         table (GScanner does value-wrapping).
330
331 Thu May 14 04:14:12 1998  Tim Janik  <timj@gtk.org>
332
333         * glib.h: typedef gint gboolean;
334         this is needed to provide portability with big-endian platforms (e.g.
335         try sizeof(bool) for c++ on big-endians - it's 4).
336         this is also needed to maintain some_union.d_gint==some_union.d_gboolean.
337         plus, gint to gboolean casts and vice versa need to be possible without
338         loss.
339
340 Tue May 12 19:22:58 1998  Owen Taylor  <otaylor@gtk.org>
341
342         * glib/glib.h: Added macros G[U]INT_TO_POINTER() and
343         GPOINTER_TO_[U]INT for storing small integers integers
344         inside pointers. 
345         
346         * glib/testglib.c: Print sizeof() results
347         as g_print("%ld", (glong)sizeof(foo)), to deal with
348         size_t being long on Alpha's.
349
350 Tue May 12 16:54:15 1998  Owen Taylor  <otaylor@gtk.org>
351         (James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
352         
353         * glib.h gstring.c gmessages.c: Added some missing
354         const to arguments.
355
356         * gutils.c (g_strsignal.c): Added missing return statements.
357
358 Mon May 11 21:11:54 1998  Owen Taylor  <otaylor@gtk.org>
359
360         * gutils.c gmessages.c: Moved g_error, g_warning, g_message and
361         g_print from gutils.c to new file gmessages.c, to avoid having to
362         include <unistd.h> in gutils.c which was causing problems for the
363         g_strsignal implementation on FreeBSD boxes.
364
365 Mon May 11 09:53:43 1998  Tim Janik  <timj@gtk.org>
366
367         * configure.in: preserve automake CFLAGS.
368
369         * Makefile.am: fully rename the created library to libglib-1.1.la.
370         this means we need to change certain portions of the Makefile.am on
371         major/minor version bumps.
372
373         * ltmain.sh: the -release option is not required anymore.
374
375         * glib.h: provide G_GNUC_FUNCTION and G_GNUC_PRETTY_FUNCTION to
376         avoid conditionals. unconditionally define NULL, TRUE, FALSE, MAX,
377         MIN, ABS and CLAMP, these macros might be screwed from other headers.
378
379 Mon May 11 01:44:10 1998  Tim Janik  <timj@gtk.org>
380
381         * gdataset.c: new file, gdatasets implement the object data
382         mechanism from GtkObject. a generic data pointer is associated with
383         a certain location and a key id.
384
385 Sat May  9 20:08:12 1998  Owen Taylor  <otaylor@gtk.org>
386
387         * glib/gmem.c: Experimentally restore GMemChunk
388         to its primeval state - where mem areas are
389         freed incrementally instead of searching the tree
390         every time a mem area is completely empty. Also,
391         always keep one mem chunk around. (Reduced calls
392         to malloc() a lot, but doesn't really improve
393         performance significiantly)
394
395 Thu May  7 08:17:28 1998  Tim Janik  <timj@gtk.org>
396
397         * glib.h (G_GNUC_PRINTF):
398         (G_GNUC_SCANF): macros to facilitate the printf/scanf format argument
399         checking of gcc.
400
401         * gstring.c: const corrections, string!=NULL checks at function entry.
402         (g_string_down): new function for tolower(3) conversion.
403         (g_string_up): new function for toupper(3) conversion.
404
405         * gutils.c: const corrections.
406         (g_strdown): g_string_down() counterpart.
407         (g_strup): g_string_up() counterpart.
408
409         * gscanner.c (g_scanner_unexp_token):
410         (g_scanner_error):
411         (g_scanner_warn): new functions to let a scanner put out warnings
412         or errors, especially to react on unexpected tokens.
413
414         * gslist.c:
415         (g_slist_index): find out about about the position of a
416         certain data pointer.
417         (g_slist_position): find out about about the position of a
418         certain node.
419
420         * glist.c:
421         (g_list_index): find out about about the position of a
422         certain data pointer.
423
424 Thu May  7 05:14:19 1998  Tim Janik  <timj@gtk.org>
425
426         * ltmain.sh: added a new commandline flag -postfix similar to -release,
427         but will immediately change the library name.
428
429         * Makefile.am: specify -postfix and -version-info
430
431         * configure.in: version bump to 1.1.0. added GLIB_INTERFACE_AGE and
432         GLIB_BINARY_AGE. calculate LT_* variables for libtool.
433
434 Fri May  1 16:36:08 1998  Owen Taylor  <otaylor@gtk.org>
435
436         * gutils.c: (g_strcasecmp). Check for isupper before
437         taking tolower, and account for macroized tolower.
438
439         * gutils.c (g_error): Check for recursion.
440
441 1998-04-27  Elliot Lee  <sopwith@cuc.ml.org>
442
443         * glist.c (g_list_position): New function to find the position of
444         a link in a list - should be the inverse of g_list_nth(), but
445         haven't tested it so poof.
446
447 Thu Apr 30 21:41:30 1998  Owen Taylor  <otaylor@gtk.org>
448
449         * gstring.c : Check arguments more carefully, 
450         (gtk-draco-980423-1.patch; ramsey@rhrk.uni-kl.de) 
451
452 Tue Apr  7 19:36:48 1998  Owen Taylor  <owt1@cornell.edu>
453
454         * gutils.c (g_direct_compare): Removed, because that's what
455         a NULL comparison function means. And it wasn't 64 bit safe.
456
457 Mon Apr  6 18:43:25 1998  Tim Janik  <timj@gtk.org>
458
459         * gscanner.c (g_scanner_get_token_ll): fixed a bug that caused floats
460         of the format ".xxx" to be parsed as "xxx".
461
462 Fri Apr  3 20:36:35 1998  Owen Taylor  <owt1@cornell.edu>
463
464         * gutils.c (g_parse_debug_string): Make debug string
465         parsine case-insensitive
466
467 Fri Apr  3 17:03:18 PST 1998 Manish Singh <yosh@gimp.org>
468
469         * gstring.c: corrected possible overrun when inserting into
470         GStrings (thanks Elrond)
471
472 Fri Apr  3 18:05:45 1998  Owen Taylor  <owt1@cornell.edu>
473
474         * testglib.c: Removed literal german from strings
475         to appease SGI compiler.
476         
477 Thu Mar 26 20:47:21 1998  Owen Taylor  <owt1@cornell.edu>
478
479         * configure.in glib glibconfig.h.in: Add test for atexit/on_exit -
480         use on_exit if atexit not found in definition of ATEXIT.
481
482 Wed Mar 25 15:23:37 1998  Owen Taylor  <owt1@cornell.edu>
483
484         * Makefile.am: Switched glibconfig.h rule from HEADERS
485         to DATA, so that it is not added to DISTFILES
486
487 Wed Mar 18 22:27:08 PST 1998 Manish Singh <yosh@gimp.org>
488
489         * garray.c: g_rarray_truncate length done correctly
490
491 Sun Mar 15 07:13:34 1998  Tim Janik  <timj@gimp.org>
492
493         * gutils.c: changed *_handler variables to be named glib_*_handler,
494         so you can easily access them from gdb.
495
496 Sat Mar 14 17:47:43 1998  Owen Taylor  <owt1@cornell.edu>
497
498         * Makefile.am: Don't refer to current directory as $(top_builddir)
499         to avoid confusing non-gmakes
500
501 Sat Mar 14 01:37:35 1998  Owen Taylor  <owt1@cornell.edu>
502
503         * Makefile.am (configincludedir): Moved glibconfig.h to
504           $(pkglibdir)/include
505
506 Tue Mar 10 02:03:12 1998  Tim Janik  <timj@gimp.org>
507
508         * gscanner.c (g_scanner_destroy_symbol_table_entry): new function to
509         free symbol table entries upon destruction
510         (gtk-gronlund-980309-0.patch.gz).
511
512 Mon Mar  9 15:02:21 1998  Tim Janik  <timj@gimp.org>
513
514         * glib.h: changed *_length functions to return guint.
515         changed *_nth functions to take guint as argument.
516
517         * glist.c: adapted g_list_length and g_list_length.
518
519         * gslist.c: adapted g_slist_length and g_slist_length.
520
521 Mon Mar  2 17:51:18 1998  Owen Taylor  <owt1@cornell.edu>
522
523         * glib.h gutils.c : changed g_strcasecmp
524           to take gchar* not guchar*
525
526         * testglib.c: Remove trailing ; after functions
527         
528 Sun Mar  1 19:04:40 1998  Owen Taylor  <owt1@cornell.edu>
529
530         * glib.h gstring.c: Added g_string_insert[_c]()
531           and g_string_erase().
532
533           From: Stefan Wille  <1wille@vsys1.informatik.uni-hamburg.de>
534
535 Mon Feb 16 23:05:06 1998  Owen Taylor  <owt1@cornell.edu>
536
537         * glist.c (g_list_insert_sorted): Changed function
538           so elements are always inserted, even if they compare
539           equal with another.
540
541 Thu Feb 12 22:48:11 1998  Owen Taylor  <owt1@cornell.edu>
542
543         * gstring.c glib.h: removed deprecated g_string_equal
544           and g_string_hash.
545
546 Tue Feb 10 13:04:36 1998  Owen Taylor  <owt1@cornell.edu>
547
548         * configure.in: Add check to see if the C library's
549           iswalnum can actually be used. (Not true for
550           Linux libc-5.4.38)
551
552 Sat Feb  7 11:48:09 1998  Owen Taylor  <owt1@cornell.edu>
553
554         * gstring.c gutils.c: added some additional consts in
555           appropriate places to remove a warning
556
557 Sat Feb  7 11:15:54 1998  Owen Taylor  <owt1@cornell.edu>
558
559         * gutils.c: include <ctype.h> for tolower()
560
561 Fri Jan 30 23:57:17 PST 1998 Manish Singh <yosh@gimp.org>
562
563         * added and autoconfigured in a new utility function
564         g_strcasecmp
565
566 Wed Jan 28 23:53:27 PST 1998 Manish Singh <yosh@gimp.org>
567
568         * glist.c
569         * gslist.c
570         * testglib.c: the sort functions compared backwards. Fixed
571         * glib.h: list iterator macros now check for NULL pointers
572
573 Tue Jan 27 09:46:57 PST 1998 Manish Singh <yosh@gimp.org>
574
575         * gstring.c: g_string_prepend and g_string_prepend_c had
576         interchanged src and dest parameters for g_memmove. Fixed.
577
578 Tue Jan 27 01:38:52 PST 1998 Manish Singh <yosh@gimp.org>
579
580         * gslist.c: fixed a really, really lame error. g_slist_insert
581         didn't hook the data in! Reworked the routine to reflect the
582         functionality of g_list
583
584 Wed Jan 21 01:13:25 1998  Tim Janik  <timj@psynet.net>
585
586         * Applied patch from (Raja R Harinath <harinath@cs.umn.edu>)
587           to add function g_snprintf.
588         * configure.in (AC_CHECK_FUNCS): Check for vsnprintf.
589         * glib.h: Add prototype for g_snprintf.
590         * glibconfig.h.in: Add HAVE_VSNPRINTF.
591         * gutils.c (g_snprintf): new function.
592
593 Sat Jan 17 23:52:40 1998  Owen Taylor  <owt1@cornell.edu>
594
595         * gstring.{c,h} gscanner.c:
596            renamed g_string_equal => g_str_equal
597            renamed g_string_hash => g_str_hash
598           And const corrected. Old functions left in for now.
599         
600 Fri Jan  9 20:03:46 1998  Tim Janik  <timj@psynet.net>
601
602         * gutils.c (g_strerror): changed message for EAGAIN from
603         "no more processes" to "try again" since EAGAIN is used with
604         functions else than fork().
605
606         * gscanner.c (g_scanner_get_token_ll): use strtol() instead of
607         strtoul() to avoid conflicts with solaris.
608
609         * merged the glib portions from Jan 2 to Jan 7 out of gtk+/ChangeLog
610         into this file.
611
612 Wed Jan  7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
613
614         * glib.h:
615         * glist.c:
616         * gslist.c:
617         * testglib.c: Added g_[s]list_insert_sorted function
618         and appropriate tests in testglib
619
620 Sat Jan  3 20:23:25 1998  Owen Taylor  <owt1@cornell.edu>
621
622         * glib.h: Changed guint32 -> guint for bitfields.
623         (Bitfields must be int or unsigned int?)
624
625 Fri Jan  2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
626
627         * glib_pre1.h: 
628         * glib_pre2.h: 
629         * glib.h: reverted glibconfig.h and glib.h files back to the
630         way they were before my ugly hack.
631
632         * gscanner.c: removed inlines from clist and gscanner
633
634 Tue Dec 23 02:49:51 1997  Tim Janik  <timj@psynet.net>
635
636         * gscanner.c: new file for GScanner: Flexible lexical scanner for
637         general purpose.
638         * glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
639         gutils.c (g_strconcat): new function for string concatenation of NULL
640         terminated parameter list.
641         (g_strtod): new function to perform best string to double conversion
642         with or without consideration of the current locale.
643
644 Mon Dec 15 19:33:58 1997  Tim Janik  <timj@psynet.net>
645
646         * glist.c: minor optimizations:
647         (g_list_append): `if' optimized for common code path, commented out
648         unneccessary `assert', saved one variable assignment.
649         (g_list_prepend): saved two (conditioned) variable assignment.
650         (g_list_insert): saved one  (conditioned) variable assignment,
651         saved one variable assignment.
652         (g_list_remove): `if' optimized for common code path, saved two
653         variable assignments by using `g_list_free_1' (which is even
654         faster) instead of `g_list_free'.
655         (g_list_reverse): saved allocation of one variable, saved one
656         variable assignment.
657
658 Wed Dec 10 23:27:20 1997  Tim Janik  <timj@psynet.net>
659
660         * glib_pre1.h: 
661         * glib_pre2.h: 
662         * glib.h: this file now gets concatenated by makeglib_h from
663         glib_pre1.h and glib_pre2.h to merge in glibconfig.h wich got
664         created by configure (done by Jay Painter).
665
666         * glib_pre2.h: the g_assert*() and g_return_*_fail() macros
667         are wrapped by G_STMT_START and G_STMT_END now, to avoid conflicts
668         when used within if (...) g_macro(); else ... conditionals.
669         
670 Tue Dec 17 13:14:07 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
671
672         * glib.h: Changed 'g_return_if_fail' and 'g_return_val_if_fail' to
673         not call 'g_string' but to simply stringify the
674         expression. Calling 'g_string' causes the expression to be
675         expanded which is undesired.
676
677 Sun Dec  1 01:30:48 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
678
679         * Started ChangeLog