From 0f33c8a9cbabda257c4dd73009266a4cf5f857a7 Mon Sep 17 00:00:00 2001 From: gramanas Date: Sat, 18 Aug 2018 18:44:14 +0300 Subject: steps towards list --- src/actions.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/actions.c') diff --git a/src/actions.c b/src/actions.c index 680ae68..3cce2f6 100644 --- a/src/actions.c +++ b/src/actions.c @@ -172,7 +172,15 @@ int run_LIST(UserOpt *opt, Conf *conf) { } return 0; } - list_print_lisp(opt->args); + + cklist *paths = list_make_new(); + + list_get_paths(&db, paths); + + //list_print_lisp(paths); + // list_print_python(opt->args); + list_print(paths); + list_free(paths); close_DB(&db); return 0; } -- cgit v1.2.3