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:
Tim Janik
1998-09-25 00:44:38 +00:00
committed by Tim Janik
parent d120d02a8c
commit 77e4f76f16
13 changed files with 855 additions and 749 deletions

6
glib.h
View File

@@ -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 */