io_load_todo() call updated in todo_arg()
This commit is contained in:
parent
4307247a07
commit
406a0b2b2f
@ -1,4 +1,4 @@
|
|||||||
/* $calcurse: args.c,v 1.23 2007/07/28 13:11:42 culot Exp $ */
|
/* $calcurse: args.c,v 1.24 2007/08/15 15:36:49 culot Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calcurse - text-based organizer
|
* Calcurse - text-based organizer
|
||||||
@ -133,10 +133,10 @@ static void
|
|||||||
todo_arg(int priority)
|
todo_arg(int priority)
|
||||||
{
|
{
|
||||||
struct todo_s *i;
|
struct todo_s *i;
|
||||||
int nb_tod, title = 1;
|
int title = 1;
|
||||||
char priority_str[BUFSIZ] = "";
|
char priority_str[BUFSIZ] = "";
|
||||||
|
|
||||||
nb_tod = io_load_todo();
|
io_load_todo();
|
||||||
for (i = todolist; i != 0; i = i->next) {
|
for (i = todolist; i != 0; i = i->next) {
|
||||||
if (priority == 0 || i->id == priority) {
|
if (priority == 0 || i->id == priority) {
|
||||||
if (title) {
|
if (title) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user