summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-04-20 00:44:19 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-04-20 00:44:19 +0100
commit3536634b90c2c0d18821eb9f6fcf10a49af9730e (patch)
tree84eed782ba7a8a4923cba7730bffefaddd19b774 /include
parent7c511730f32b1675b2e7691ab5f271263bfa32ad (diff)
protected_cell glyphinfo should be a single bit bitfield
Diffstat (limited to 'include')
-rw-r--r--include/vterm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vterm.h b/include/vterm.h
index 4b345d7..1c5c8ce 100644
--- a/include/vterm.h
+++ b/include/vterm.h
@@ -98,7 +98,7 @@ typedef void (*VTermMouseFunc)(int x, int y, int button, int pressed, int modifi
typedef struct {
const uint32_t *chars;
int width;
- int protected_cell; /* DECSCA-protected against DECSEL/DECSED */
+ unsigned int protected_cell:1; /* DECSCA-protected against DECSEL/DECSED */
} VTermGlyphInfo;
typedef struct {