aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-06-27 13:16:04 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-06-27 13:16:04 +0300
commita01d5e230db6f61a6efd3384f1eafe184944c45d (patch)
treece072f7f35145065c10940d0f3162eea747c757b
parent5a37057b0ca1b7314f7f338134efc5100dc9223f (diff)
downloadgrecs-a01d5e230db6f61a6efd3384f1eafe184944c45d.tar.gz
grecs-a01d5e230db6f61a6efd3384f1eafe184944c45d.tar.bz2
Bugfixes.
-rw-r--r--src/git-parser.c2
-rw-r--r--src/meta1-gram.y3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/git-parser.c b/src/git-parser.c
index e332704..7b887a7 100644
--- a/src/git-parser.c
+++ b/src/git-parser.c
@@ -58,7 +58,7 @@ rawinput()
58 tok.prev_col = grecs_current_locus_point.col; 58 tok.prev_col = grecs_current_locus_point.col;
59 grecs_locus_point_advance_line(grecs_current_locus_point); 59 grecs_locus_point_advance_line(grecs_current_locus_point);
60 } else if (input_char < 0) 60 } else if (input_char < 0)
61 input_char == 0; 61 input_char = 0;
62 else 62 else
63 grecs_current_locus_point.col++; 63 grecs_current_locus_point.col++;
64 return input_char; 64 return input_char;
diff --git a/src/meta1-gram.y b/src/meta1-gram.y
index 0fb6727..1411361 100644
--- a/src/meta1-gram.y
+++ b/src/meta1-gram.y
@@ -27,7 +27,8 @@ int yylex(void);
27int yyerror(char *s); 27int yyerror(char *s);
28 28
29static struct grecs_node *parse_tree; 29static struct grecs_node *parse_tree;
30extern int yy_flex_debug; 30extern int yy_flex_debug;
31extern void yyset_in(FILE *);
31%} 32%}
32 33
33%error-verbose 34%error-verbose

Return to:

Send suggestions and report system problems to the System administrator.