Unable to make while using scrollback patch ref. #14
This commit is contained in:
parent
f31c43015d
commit
708cdada96
2 changed files with 3 additions and 3 deletions
3
st.c
3
st.c
|
|
@ -44,9 +44,6 @@
|
|||
#define ESC_ARG_SIZ 16
|
||||
#define STR_BUF_SIZ ESC_BUF_SIZ
|
||||
#define STR_ARG_SIZ ESC_ARG_SIZ
|
||||
#if SCROLLBACK_PATCH
|
||||
#define HISTSIZE 2000
|
||||
#endif // SCROLLBACK_PATCH
|
||||
|
||||
/* macros */
|
||||
#define IS_SET(flag) ((term.mode & (flag)) != 0)
|
||||
|
|
|
|||
3
st.h
3
st.h
|
|
@ -32,6 +32,9 @@
|
|||
|
||||
#define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
|
||||
#define IS_TRUECOL(x) (1 << 24 & (x))
|
||||
#if SCROLLBACK_PATCH
|
||||
#define HISTSIZE 2000
|
||||
#endif // SCROLLBACK_PATCH
|
||||
|
||||
enum glyph_attribute {
|
||||
ATTR_NULL = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue