diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-15 20:02:00 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-15 20:02:00 +0000 |
commit | b1d3178bba66089726e6f93a49af97371bdf5db8 (patch) | |
tree | 1a1bb5ea6c9c4147c6358b2929210e163684b28d /src/utils.c | |
parent | 8220580918078bebcd339fdc7492ab28223552b4 (diff) | |
download | calcurse-b1d3178bba66089726e6f93a49af97371bdf5db8.zip |
small bugfixes and a major one (freeze when deleting an appointment's note, thanks Jan for reporting it)
Diffstat (limited to 'src/utils.c')
-rwxr-xr-x | src/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c index 147229e..f4d82fe 100755 --- a/src/utils.c +++ b/src/utils.c @@ -1,4 +1,4 @@ -/* $calcurse: utils.c,v 1.59 2008/12/14 15:54:51 culot Exp $ */ +/* $calcurse: utils.c,v 1.60 2008/12/15 20:02:00 culot Exp $ */ /* * Calcurse - text-based organizer @@ -329,7 +329,7 @@ getstring (WINDOW *win, char *str, int l, int x, int y) newpos++; break; - case KEY_GENERIC_CANCEL: /* cancel editing */ + case ESCAPE: /* cancel editing */ return (GETSTRING_ESC); break; |