mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-19 01:39:32 -06:00
fix the encoding problem with unicode literals in the Python binding
This commit is contained in:
@@ -148,7 +148,7 @@ typedef enum {
|
||||
|
||||
struct PgfExprParser {
|
||||
GuExn* err;
|
||||
GuReader* rdr;
|
||||
GuIn* in;
|
||||
GuPool* expr_pool;
|
||||
GuPool* tmp_pool;
|
||||
PGF_TOKEN_TAG token_tag;
|
||||
@@ -159,7 +159,7 @@ struct PgfExprParser {
|
||||
static void
|
||||
pgf_expr_parser_getc(PgfExprParser* parser)
|
||||
{
|
||||
parser->ch = gu_getc(parser->rdr, parser->err);
|
||||
parser->ch = gu_in_u8(parser->in, parser->err);
|
||||
if (!gu_ok(parser->err)) {
|
||||
gu_exn_clear(parser->err);
|
||||
parser->ch = EOF;
|
||||
@@ -353,12 +353,12 @@ pgf_expr_parser_expr(PgfExprParser* parser)
|
||||
}
|
||||
|
||||
PgfExpr
|
||||
pgf_read_expr(GuReader* rdr, GuPool* pool, GuExn* err)
|
||||
pgf_read_expr(GuIn* in, GuPool* pool, GuExn* err)
|
||||
{
|
||||
GuPool* tmp_pool = gu_new_pool();
|
||||
PgfExprParser* parser = gu_new(PgfExprParser, tmp_pool);
|
||||
parser->err = err;
|
||||
parser->rdr = rdr;
|
||||
parser->in = in;
|
||||
parser->expr_pool = pool;
|
||||
parser->tmp_pool = NULL;
|
||||
parser->ch = ' ';
|
||||
|
||||
@@ -152,7 +152,7 @@ pgf_expr_unapply(PgfExpr expr, GuPool* pool);
|
||||
|
||||
|
||||
PgfExpr
|
||||
pgf_read_expr(GuReader* rdr, GuPool* pool, GuExn* err);
|
||||
pgf_read_expr(GuIn* in, GuPool* pool, GuExn* err);
|
||||
|
||||
bool
|
||||
pgf_literal_eq(PgfLiteral lit1, PgfLiteral lit2);
|
||||
|
||||
Reference in New Issue
Block a user