Merge branch 'maint'

Conflicts:
	src/calcurse.h
	src/io.c
This commit is contained in:
Lukas Fleischer
2011-11-11 12:29:48 +01:00
5 changed files with 20 additions and 7 deletions

View File

@@ -145,7 +145,10 @@ void
calendar_stop_date_thread (void)
{
if (calendar_t_date)
pthread_cancel (calendar_t_date);
{
pthread_cancel (calendar_t_date);
pthread_join (calendar_t_date, NULL);
}
}
/* Set static variable today to current date */