1998-01-10 00:25:21 +00:00
|
|
|
Fri Jan 9 20:03:46 1998 Tim Janik <timj@psynet.net>
|
|
|
|
|
|
|
|
* gutils.c (g_strerror): changed message for EAGAIN from
|
|
|
|
"no more processes" to "try again" since EAGAIN is used with
|
|
|
|
functions else than fork().
|
|
|
|
|
|
|
|
* gscanner.c (g_scanner_get_token_ll): use strtol() instead of
|
|
|
|
strtoul() to avoid conflicts with solaris.
|
|
|
|
|
|
|
|
* merged the glib portions from Jan 2 to Jan 7 out of gtk+/ChangeLog
|
|
|
|
into this file.
|
|
|
|
|
|
|
|
Wed Jan 7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
|
|
|
|
|
|
|
|
* glib.h:
|
|
|
|
* glist.c:
|
|
|
|
* gslist.c:
|
|
|
|
* testglib.c: Added g_[s]list_insert_sorted function
|
|
|
|
and appropriate tests in testglib
|
|
|
|
|
|
|
|
Sat Jan 3 20:23:25 1998 Owen Taylor <owt1@cornell.edu>
|
|
|
|
|
|
|
|
* glib.h: Changed guint32 -> guint for bitfields.
|
|
|
|
(Bitfields must be int or unsigned int?)
|
|
|
|
|
|
|
|
Fri Jan 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
|
|
|
|
|
|
|
* glib_pre1.h:
|
|
|
|
* glib_pre2.h:
|
|
|
|
* glib.h: reverted glibconfig.h and glib.h files back to the
|
|
|
|
way they were before my ugly hack.
|
|
|
|
|
|
|
|
* gscanner.c: removed inlines from clist and gscanner
|
|
|
|
|
1997-12-23 02:09:34 +00:00
|
|
|
Tue Dec 23 02:49:51 1997 Tim Janik <timj@psynet.net>
|
|
|
|
|
|
|
|
* gscanner.c: new file for GScanner: Flexible lexical scanner for
|
|
|
|
general purpose.
|
|
|
|
* glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
|
|
|
|
gutils.c (g_strconcat): new function for string concatenation of NULL
|
|
|
|
terminated parameter list.
|
|
|
|
(g_strtod): new function to perform best string to double conversion
|
|
|
|
with or without consideration of the current locale.
|
|
|
|
|
1997-12-15 19:08:53 +00:00
|
|
|
Mon Dec 15 19:33:58 1997 Tim Janik <timj@psynet.net>
|
|
|
|
|
|
|
|
* glist.c: minor optimizations:
|
|
|
|
(g_list_append): `if' optimized for common code path, commented out
|
|
|
|
unneccessary `assert', saved one variable assignment.
|
|
|
|
(g_list_prepend): saved two (conditioned) variable assignment.
|
|
|
|
(g_list_insert): saved one (conditioned) variable assignment,
|
|
|
|
saved one variable assignment.
|
|
|
|
(g_list_remove): `if' optimized for common code path, saved two
|
|
|
|
variable assignments by using `g_list_free_1' (which is even
|
|
|
|
faster) instead of `g_list_free'.
|
|
|
|
(g_list_reverse): saved allocation of one variable, saved one
|
|
|
|
variable assignment.
|
|
|
|
|
1997-12-10 22:43:24 +00:00
|
|
|
Wed Dec 10 23:27:20 1997 Tim Janik <timj@psynet.net>
|
|
|
|
|
|
|
|
* glib_pre1.h:
|
|
|
|
* glib_pre2.h:
|
|
|
|
* glib.h: this file now gets concatenated by makeglib_h from
|
|
|
|
glib_pre1.h and glib_pre2.h to merge in glibconfig.h wich got
|
|
|
|
created by configure (done by Jay Painter).
|
|
|
|
|
|
|
|
* glib_pre2.h: the g_assert*() and g_return_*_fail() macros
|
|
|
|
are wrapped by G_STMT_START and G_STMT_END now, to avoid conflicts
|
|
|
|
when used within if (...) g_macro(); else ... conditionals.
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
Tue Dec 17 13:14:07 1996 Peter Mattis <pmattis@charnley.HIP.Berkeley.EDU>
|
|
|
|
|
|
|
|
* glib.h: Changed 'g_return_if_fail' and 'g_return_val_if_fail' to
|
|
|
|
not call 'g_string' but to simply stringify the
|
|
|
|
expression. Calling 'g_string' causes the expression to be
|
|
|
|
expanded which is undesired.
|
|
|
|
|
|
|
|
Sun Dec 1 01:30:48 1996 Peter Mattis <pmattis@charnley.HIP.Berkeley.EDU>
|
|
|
|
|
|
|
|
* Started ChangeLog
|