aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term_ascii.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-05-08 15:34:54 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-05-08 15:34:54 +0000
commitaa8151b1157e8486bce7cb08deeb4c78df1d9669 (patch)
tree00a31b096cb9f968844ba4e0abd4f6a07037f6c9 /term_ascii.c
parent396a6a4a456ccbca1eb8ea6ef724a14e28f9fc54 (diff)
downloadmandoc-aa8151b1157e8486bce7cb08deeb4c78df1d9669.tar.gz
mandoc-aa8151b1157e8486bce7cb08deeb4c78df1d9669.tar.zst
mandoc-aa8151b1157e8486bce7cb08deeb4c78df1d9669.zip
Basic implementation of the roff(7) .ti (temporary indent) request.
Needed by about four dozen ports (thanks to naddy@ for the research).
Diffstat (limited to 'term_ascii.c')
-rw-r--r--term_ascii.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/term_ascii.c b/term_ascii.c
index d0afafc4..97041619 100644
--- a/term_ascii.c
+++ b/term_ascii.c
@@ -1,7 +1,7 @@
-/* $Id: term_ascii.c,v 1.55 2017/05/07 17:31:45 schwarze Exp $ */
+/* $Id: term_ascii.c,v 1.56 2017/05/08 15:34:54 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -215,6 +215,8 @@ ascii_endline(struct termp *p)
{
p->line++;
+ p->offset -= p->ti;
+ p->ti = 0;
putchar('\n');
}
@@ -369,6 +371,8 @@ locale_endline(struct termp *p)
{
p->line++;
+ p->offset -= p->ti;
+ p->ti = 0;
putwchar(L'\n');
}