hardcopy: bold,italic,underline are TriState

This commit is contained in:
Jan Edmund Lazo
2018-07-19 02:26:03 -04:00
parent c0dbd8df95
commit d536fb018f
2 changed files with 41 additions and 40 deletions

View File

@@ -2,10 +2,11 @@
#define NVIM_HARDCOPY_H
#include <stdint.h>
#include <stdlib.h> // for size_t
#include <stdlib.h> // for size_t
#include "nvim/types.h" // for char_u
#include "nvim/ex_cmds_defs.h" // for exarg_T
#include "nvim/globals.h" // for TriState
#include "nvim/types.h" // for char_u
#include "nvim/ex_cmds_defs.h" // for exarg_T
/*
* Structure to hold printing color and font attributes.
@@ -13,9 +14,9 @@
typedef struct {
uint32_t fg_color;
uint32_t bg_color;
int bold;
int italic;
int underline;
TriState bold;
TriState italic;
TriState underline;
int undercurl;
} prt_text_attr_T;