mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-24 18:08:54 +02:00
version bump to 1.1.4, binary age 0, interface age 0.
Fri Sep 25 00:04:37 1998 Tim Janik <timj@gtk.org> * configure.in: version bump to 1.1.4, binary age 0, interface age 0. * glib.h (struct _GScanner): dumped peeked_char and text_len in favour of *text_end and *buffer for buffered read()s. * gscanner.c: changed peeking and retrival of next character so we have buffered reads. fixed minor bug with number parsing error reporting. made some static!!! variables local ones (why did we use static temporary variables in the lowlevel tokenization code anyways?).
This commit is contained in:
6
glib.h
6
glib.h
@@ -1654,10 +1654,10 @@ struct _GScanner
|
||||
|
||||
/* to be considered private */
|
||||
GHashTable *symbol_table;
|
||||
const gchar *text;
|
||||
guint text_len;
|
||||
gint input_fd;
|
||||
gint peeked_char;
|
||||
const gchar *text;
|
||||
const gchar *text_end;
|
||||
gchar *buffer;
|
||||
guint scope_id;
|
||||
|
||||
/* handler function for _warn and _error */
|
||||
|
Reference in New Issue
Block a user