avoid potential UB when using isprint()
all the ctype.h functions' argument must be representable as an unsigned char or as EOF, otherwise the behavior is undefined.
This commit is contained in:
parent
4d91f6cab7
commit
f95e3c9ba4
1 changed files with 1 additions and 1 deletions
2
config.h
2
config.h
|
@ -100,7 +100,7 @@ char *termname = "st-256color";
|
|||
unsigned int tabspaces = 4;
|
||||
|
||||
/* bg opacity */
|
||||
float alpha = 1.0;
|
||||
float alpha = 0.8;
|
||||
|
||||
/* Apprentice colorscheme */
|
||||
/* Terminal colors (16 first used in escape sequence) */
|
||||
|
|
Loading…
Add table
Reference in a new issue