Closed planet36 closed 3 years ago
The existing srcery_st.c cannot be copied into st's config.h without compile errors.
srcery_st.c
config.h
The config.def.h in suckless' repo has changed in the following ways:
config.def.h
defaultrcs
defaultitalic
defaultunderline
static
defaultfg
defaultbg
This pull request fixes the errors.
Additionally, srcery_st.c is renamed to srcery_st.h to be consistent with the fact that st is configured with a .h file rather than a .c file.
srcery_st.h
The existing
srcery_st.c
cannot be copied into st'sconfig.h
without compile errors.The
config.def.h
in suckless' repo has changed in the following ways:defaultrcs
was added in 2015defaultitalic
,defaultunderline
were removed in 2016static
was removed fromdefaultfg
,defaultbg
in 2017This pull request fixes the errors.
Additionally,
srcery_st.c
is renamed tosrcery_st.h
to be consistent with the fact that st is configured with a .h file rather than a .c file.