summaryrefslogtreecommitdiff
path: root/location.c
diff options
context:
space:
mode:
Diffstat (limited to 'location.c')
-rw-r--r--location.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/location.c b/location.c
index 481c033..a7ac4cd 100644
--- a/location.c
+++ b/location.c
@@ -3,26 +3,28 @@
This file is part of toc. toc is distributed under version 3 of the GNU General Public License, without any warranty whatsoever.
You should have received a copy of the GNU General Public License along with toc. If not, see <https://www.gnu.org/licenses/>.
*/
-static bool location_after(Location a, Location b) { /* a is after b? */
- assert(a.ctx == b.ctx);
- return a.pos > b.pos;
-}
static Location const LOCATION_NONE = {0};
/* for debugging */
static void fprint_location(FILE *out, Location location) {
- if (!location.ctx) {
+ if (!location.first) {
fprintf(out, "No location available.");
return;
}
- char *str = location.ctx->str + location.pos;
+ /* TODO: show end */
+ char *str = location.first->pos.ctx->str + location.first->pos.start;
char *newline = strchr(str, '\n');
if (newline) *newline = 0;
- fprintf(out, "Line %ld: %s\n", (long)location.line, str);
+ fprintf(out, "Line %ld: %s\n", (long)location.first->pos.line, str);
if (newline) *newline = '\n';
}
static void print_location(Location location) {
fprint_location(stdout, location);
}
+
+
+static bool location_is_ctx_disabled(Location location) {
+ return location.first && !location.first->pos.ctx->enabled;
+}