Compare commits

...

5 Commits

Author SHA1 Message Date
7e3378de5b merge barcursor branch (changes cursor to bar) 2020-05-02 13:33:30 +00:00
caddf296b1 merging updates from upstream/master 2020-05-02 13:31:59 +00:00
70ef254c83 changed cursor shape to bar 2020-05-01 20:01:11 +00:00
Jan Klemkow
d6ea0a1a61 replace exit(3) by _exit(2) in signal handler sigchld()
exit(3) is not async-signal-safe but, _exit(2) is.
This change prevents st to crash and dump core.
2020-04-30 01:21:21 +02:00
Hiltjo Posthuma
43a395ae91 bump version to 0.8.3 2020-04-27 13:56:25 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ static unsigned int defaultrcs = 257;
* 6: Bar ("|")
* 7: Snowman ("")
*/
static unsigned int cursorshape = 2;
static unsigned int cursorshape = 6;
/*
* Default columns and rows numbers

View File

@ -1,5 +1,5 @@
# st version
VERSION = 0.8.2
VERSION = 0.8.3
# Customize below to fit your system

2
st.c
View File

@ -737,7 +737,7 @@ sigchld(int a)
die("child exited with status %d\n", WEXITSTATUS(stat));
else if (WIFSIGNALED(stat))
die("child terminated due to signal %d\n", WTERMSIG(stat));
exit(0);
_exit(0);
}
void