summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-07-23 19:10:03 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-07-23 19:10:03 +0100
commit11092790f34c76a141d8a10a2cb381fa54e872e6 (patch)
tree64dc8356cf4ef3a50d6d61c1784b86e465b6dc80 /include
parent8d77749ec324cdd619301be8373a302850eedc5c (diff)
Implement DECDWL/DECDHL at Screen layer
Diffstat (limited to 'include')
-rw-r--r--include/vterm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vterm.h b/include/vterm.h
index bcf2fe8..ee9603c 100644
--- a/include/vterm.h
+++ b/include/vterm.h
@@ -223,6 +223,8 @@ typedef struct {
unsigned int reverse : 1;
unsigned int strike : 1;
unsigned int font : 4; /* 0 to 9 */
+ unsigned int dwl : 1; /* On a DECDWL or DECDHL line */
+ unsigned int dhl : 2; /* On a DECDHL line (1=top 2=bottom) */
} attrs;
VTermColor fg, bg;
} VTermScreenCell;