summaryrefslogtreecommitdiff
path: root/src/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/list.c')
-rw-r--r--src/list.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/list.c b/src/list.c
index 7eef5e3..989cfcf 100644
--- a/src/list.c
+++ b/src/list.c
@@ -33,8 +33,6 @@ void init_list_mode(void)
feh_file *file = NULL;
int j = 0;
- D_ENTER(4);
-
mode = "list";
if (!opt.customlist)
@@ -58,18 +56,16 @@ void init_list_mode(void)
void init_loadables_mode(void)
{
- D_ENTER(4);
mode = "loadables";
real_loadables_mode(1);
- D_RETURN_(4);
+ return;
}
void init_unloadables_mode(void)
{
- D_ENTER(4);
mode = "unloadables";
real_loadables_mode(0);
- D_RETURN_(4);
+ return;
}
void real_loadables_mode(int loadable)
@@ -77,7 +73,6 @@ void real_loadables_mode(int loadable)
feh_file *file;
gib_list *l;
- D_ENTER(4);
opt.quiet = 1;
for (l = filelist; l; l = l->next) {