diff options
author | Frederic Culot <calcurse@culot.org> | 2006-08-24 20:12:21 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-08-24 20:12:21 +0000 |
commit | b9c26dc9fd3a7ab6dbcef3c483ae778ac1bde0a4 (patch) | |
tree | 0760ddb18f63d433cc7e240896db5647e4d1625e /src | |
parent | b701ed5b8fdeca5f7e1ffed923959553ca78155e (diff) | |
download | calcurse-b9c26dc9fd3a7ab6dbcef3c483ae778ac1bde0a4.tar.gz calcurse-b9c26dc9fd3a7ab6dbcef3c483ae778ac1bde0a4.zip |
forgot to wait for user's key pressed...
Diffstat (limited to 'src')
-rwxr-xr-x | src/recur.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/recur.c b/src/recur.c index 1d3b71e..840ae2d 100755 --- a/src/recur.c +++ b/src/recur.c @@ -1,4 +1,4 @@ -/* $calcurse: recur.c,v 1.6 2006/08/22 21:05:35 culot Exp $ */ +/* $calcurse: recur.c,v 1.7 2006/08/24 20:12:21 culot Exp $ */ /* * Calcurse - text-based organizer @@ -524,6 +524,7 @@ void recur_repeat_item(int sel_year, int sel_month, int sel_day, p = day_get_item(item_nb); if (p->type != APPT && p->type != EVNT) { status_mesg(wrong_type_1, wrong_type_2); + ch = wgetch(swin); return; } |