aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2008-01-17 19:35:42 +0000
committerFrederic Culot <calcurse@culot.org>2008-01-17 19:35:42 +0000
commit54c2b6004102de55c8ebed7d9ce5f1ece7eeb449 (patch)
tree32c7ed579f07b957f7fe931d935585e2f49fd43e /src/utils.c
parent738a3a417071bfaed53297cbefad39b996e55dfb (diff)
downloadcalcurse-54c2b6004102de55c8ebed7d9ce5f1ece7eeb449.tar.gz
calcurse-54c2b6004102de55c8ebed7d9ce5f1ece7eeb449.zip
minor improvements and bugfixes
Diffstat (limited to 'src/utils.c')
-rwxr-xr-xsrc/utils.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c
index 22cda23..0e9cc4d 100755
--- a/src/utils.c
+++ b/src/utils.c
@@ -1,4 +1,4 @@
-/* $calcurse: utils.c,v 1.39 2008/01/13 12:40:45 culot Exp $ */
+/* $calcurse: utils.c,v 1.40 2008/01/17 19:35:42 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -45,7 +45,8 @@ void
exit_calcurse(int status)
{
endwin();
- erase();
+ clear();
+ refresh();
calendar_stop_date_thread();
exit(status);
}