Compare commits

..

No commits in common. "7e3378de5b422b4ebb4680e06d5e41bd92b7189a" and "153272f2f8e561c44ad0ee3c5a3e5c3b1e400dd8" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,5 +1,5 @@
# st version # st version
VERSION = 0.8.3 VERSION = 0.8.2
# Customize below to fit your system # 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)); die("child exited with status %d\n", WEXITSTATUS(stat));
else if (WIFSIGNALED(stat)) else if (WIFSIGNALED(stat))
die("child terminated due to signal %d\n", WTERMSIG(stat)); die("child terminated due to signal %d\n", WTERMSIG(stat));
_exit(0); exit(0);
} }
void void