aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-05-12 00:03:51 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-05-12 00:03:51 +0300
commitf8ca129aaf4876dfa9778c34ed5bd8a669ca22e8 (patch)
tree9364824e2bc04d62c14a9f539e6b258131e437ad /src
parent3e5d6e9683d5d3efa3a82556d0f73892d674ed71 (diff)
downloadgrecs-f8ca129aaf4876dfa9778c34ed5bd8a669ca22e8.tar.gz
grecs-f8ca129aaf4876dfa9778c34ed5bd8a669ca22e8.tar.bz2
Bugfixes.
Diffstat (limited to 'src')
-rw-r--r--src/grecs.h2
-rw-r--r--src/preproc.c9
2 files changed, 7 insertions, 4 deletions
diff --git a/src/grecs.h b/src/grecs.h
index 40ade87..b2ef734 100644
--- a/src/grecs.h
+++ b/src/grecs.h
@@ -284,4 +284,6 @@ void *grecs_list_locate(struct grecs_list *lp, void *data);
void *grecs_list_index(struct grecs_list *lp, size_t idx);
void *grecs_list_remove_tail(struct grecs_list *lp);
+void grecs_list_remove_entry(struct grecs_list *lp,
+ struct grecs_list_entry *ent);
void grecs_list_clear(struct grecs_list *lp);
void grecs_list_free(struct grecs_list *lp);
diff --git a/src/preproc.c b/src/preproc.c
index cff8224..cd83e2f 100644
--- a/src/preproc.c
+++ b/src/preproc.c
@@ -417,5 +417,6 @@ push_source(const char *name, int once)
fp = fopen(name, "r");
if (!fp) {
- grecs_error(&LOCUS, errno, _("Cannot open `%s'"), name);
+ grecs_error(context_stack ? &LOCUS : NULL, errno,
+ _("Cannot open `%s'"), name);
return 1;
}
@@ -458,5 +459,5 @@ pop_source()
if (!context_stack) {
if (grecs_yy_flex_debug)
- fprintf (stderr, "End of input\n");
+ fprintf(stderr, "End of input\n");
return 1;
}
@@ -465,6 +466,6 @@ pop_source()
if (grecs_yy_flex_debug)
- fprintf (stderr, "Resuming file `%s' at line %lu\n",
- LOCUS.file, (unsigned long) LOCUS.line);
+ fprintf(stderr, "Resuming file `%s' at line %lu\n",
+ LOCUS.file, (unsigned long) LOCUS.line);
pp_line_stmt();

Return to:

Send suggestions and report system problems to the System administrator.