From 8f9068c4d3ef73db38f808bbc6f73a6b5629dac4 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 22 Aug 2022 04:30:35 +0000 Subject: [PATCH] renamed included to includee --- lib/read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/read.c b/lib/read.c index 440a3ff..ed03e6c 100644 --- a/lib/read.c +++ b/lib/read.c @@ -3709,7 +3709,7 @@ static void feed_update_lx_loc (hcl_t* hcl, hcl_ooci_t ch) } } -static int feed_from_included (hcl_t* hcl) +static int feed_from_includee (hcl_t* hcl) { int x; @@ -3795,7 +3795,7 @@ int hcl_feed (hcl_t* hcl, const hcl_ooch_t* data, hcl_oow_t len) hcl->c->feed.rd.do_include_file = 0; } - if (hcl->c->curinp != &hcl->c->inarg && feed_from_included(hcl) <= -1) + if (hcl->c->curinp != &hcl->c->inarg && feed_from_includee(hcl) <= -1) { /* TODO: return the number of processed characters via an argument? */ return -1;