bugfix: do not include '|' in item description while loading a recurrent

appointment with exceptions
This commit is contained in:
Frederic Culot 2007-04-14 18:46:12 +00:00
parent e8ed23cd60
commit 9e8689f58b

View File

@ -1,4 +1,4 @@
/* $calcurse: io.c,v 1.14 2007/04/04 19:38:18 culot Exp $ */
/* $calcurse: io.c,v 1.15 2007/04/14 18:46:12 culot Exp $ */
/*
* Calcurse - text-based organizer
@ -633,7 +633,7 @@ load_app(void)
if (c == '!') {
ungetc(c, data_file);
exc = recur_exc_scan(data_file);
fscanf(data_file, "} ");
c = getc(data_file);
} else {
ungetc(c, data_file);
fscanf(data_file, "} ");
@ -641,6 +641,7 @@ load_app(void)
} else if (c == '!') { // endless item with exceptions
ungetc(c, data_file);
exc = recur_exc_scan(data_file);
c = getc(data_file);
until.tm_year = 0;
} else { /* NOT REACHED */
fputs(error, stderr);