From: Matthias Clasen Date: Wed, 18 Jan 2006 05:35:29 +0000 (+0000) Subject: Add a note explaining peculiarities of peek_token wrt to scope changes. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=9f5b3c1d648d727236c4548a83f51a16faabc8d7;p=dana%2Fcg-glib.git Add a note explaining peculiarities of peek_token wrt to scope changes. 2006-01-18 Matthias Clasen * glib/tmpl/scanner.sgml: Add a note explaining peculiarities of peek_token wrt to scope changes. (#307922) --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 51d51a67..fdcafa76 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2006-01-18 Matthias Clasen + + * glib/tmpl/scanner.sgml: Add a note explaining peculiarities + of peek_token wrt to scope changes. (#307922) + 2006-01-17 Matthias Clasen * glib/tmpl/memory.sgml: Add a note about casting the results diff --git a/docs/reference/glib/tmpl/scanner.sgml b/docs/reference/glib/tmpl/scanner.sgml index 518fec60..16317be0 100644 --- a/docs/reference/glib/tmpl/scanner.sgml +++ b/docs/reference/glib/tmpl/scanner.sgml @@ -9,10 +9,11 @@ a general purpose lexical scanner. The #GScanner and its associated functions provide a general purpose lexical scanner. - + + @@ -259,6 +260,15 @@ The token data is placed in the next_line, and next_position fields of the #GScanner structure. + +Note that, while the token is not removed from the input stream (i.e. +the next call to g_scanner_get_next_token() will return the same token), +it will not be reevaluated. This can lead to surprising results when +changing scope after peeking for the next token. Getting the next token +after switching the scope will return whatever was peeked before, +regardless of any symbols that may have been added or removed in the +new scope. + @scanner: a #GScanner. @Returns: the type of the token.