Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Fix a typo in the last commit. (#415323, Richard Hult)
Browse files Browse the repository at this point in the history
2007-03-15  Matthias Clasen  <mclasen@redhat.com>

        * glib/gscanner.c (g_scanner_get_token_ll): Fix a typo
        in the last commit.  (#415323, Richard Hult)



svn path=/trunk/; revision=5412
  • Loading branch information
Matthias Clasen authored and Matthias Clasen committed Mar 15, 2007
1 parent b0d8ba0 commit a071ec0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2007-03-15 Matthias Clasen <mclasen@redhat.com>

* glib/gscanner.c (g_scanner_get_token_ll): Fix a typo
in the last commit. (#415323, Richard Hult)

2007-03-15 Tor Lillqvist <tml@novell.com>

* glib/gnulib/Makefile.am (INCLUDES): Add -I$(top_srcdir)/glib so
Expand Down
2 changes: 1 addition & 1 deletion glib/gscanner.c
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ g_scanner_get_token_ll (GScanner *scanner,
gstring = g_string_append_c (gstring, ch);
ch = g_scanner_peek_next_char (scanner);
}
while (ch && g_scanner_cset_table_lookup (scanner->cset_table, ch, CSET_IDENT_FIRST_FLAG));
while (ch && g_scanner_cset_table_lookup (scanner->cset_table, ch, CSET_IDENT_NTH_FLAG));
ch = 0;
}
else if (config->scan_identifier_1char)
Expand Down

0 comments on commit a071ec0

Please sign in to comment.