diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-17 16:33:49 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-17 16:33:49 +0000 |
commit | e3adfbcade0bd865046b52dd9a67ecb57bac09a7 (patch) | |
tree | a4a36fee08bb81e4c684d9b3ecc12b631243a76b | |
parent | de3a914a3d3ddaa3478e0847afdaf1dff0ae5d7b (diff) | |
download | calcurse-e3adfbcade0bd865046b52dd9a67ecb57bac09a7.tar.gz calcurse-e3adfbcade0bd865046b52dd9a67ecb57bac09a7.zip |
bugfix: missing space inside text
-rwxr-xr-x | src/calcurse.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index dd3c3a3..3863364 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.39 2007/03/11 15:21:06 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.40 2007/03/17 16:33:49 culot Exp $ */ /* * Calcurse - text-based organizer @@ -411,7 +411,8 @@ int main(int argc, char **argv) case 'X': case 'x': /* Export function */ - io_export_data(IO_EXPORT_INTERACTIVE); + io_export_data(IO_EXPORT_INTERACTIVE, + skip_system_dialogs, skip_progress_bar); break; case (261): /* right arrow */ @@ -1038,7 +1039,7 @@ print_notify_options(WINDOW *win, int col) MAX_LENGTH); strncpy(opt[WARN].desc, _("(Warn user if an appointment is within next 'notify-bar_warning'" - "seconds)"), + " seconds)"), MAX_LENGTH); strncpy(opt[CMD].desc, _("(Command used to notify user of an upcoming appointment)"), |