aboutsummaryrefslogtreecommitdiff
path: root/vterm-module.h
diff options
context:
space:
mode:
authorLukas Fürmetz <fuermetz@mailbox.org>2018-10-25 22:41:40 +0200
committerLukas Fürmetz <fuermetz@mailbox.org>2018-10-25 22:41:40 +0200
commit3ab1aefab5704ca439919856cddb093b4de8f0b5 (patch)
tree31270d3d2026f3b07c4f13ccb5661c80b943301a /vterm-module.h
parent81d2aeebaff7829e2082b5ca2fc50495f6215508 (diff)
Fix typdef of struct Term
Diffstat (limited to 'vterm-module.h')
-rw-r--r--vterm-module.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vterm-module.h b/vterm-module.h
index bf449ab..0aa88dc 100644
--- a/vterm-module.h
+++ b/vterm-module.h
@@ -23,7 +23,7 @@ static bool refresh_pending = false;
#endif
-struct term {
+typedef struct Term {
VTerm *vt;
VTermScreen *vts;
// buffer used to:
@@ -44,10 +44,10 @@ struct term {
// Flag to indicate cursor is visible
bool cursor_visible;
-};
+ // Flag to indicate cursor is blinking
+ bool cursor_blinking;
+} Term;
-
-typedef struct term Term;
// Faces
emacs_value Qterm;
emacs_value Qterm_color_black;