From 5042a48750656be594869c0fe7a60383f5372ed4 Mon Sep 17 00:00:00 2001 From: Miciah Dashiel Butler Masters Date: Sun, 1 Jan 2006 03:02:44 +0000 Subject: [PATCH] Re-indent recursively_goto_listbox. --- src/bfu/hierbox.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/bfu/hierbox.c b/src/bfu/hierbox.c index bd7aac4d0..49620d190 100644 --- a/src/bfu/hierbox.c +++ b/src/bfu/hierbox.c @@ -449,18 +449,18 @@ static void recursively_goto_listbox(struct session *ses, struct listbox_item *item, struct listbox_data *box) { - if (item->type == BI_FOLDER) { - recursively_goto_each_listbox(ses, item, box); - return; + if (item->type == BI_FOLDER) { + recursively_goto_each_listbox(ses, item, box); + return; - } else if (item->type == BI_LEAF) { - struct uri *uri = box->ops->get_uri(item); + } else if (item->type == BI_LEAF) { + struct uri *uri = box->ops->get_uri(item); - if (!uri) return; + if (!uri) return; - open_uri_in_new_tab(ses, uri, 1, 0); - done_uri(uri); - } + open_uri_in_new_tab(ses, uri, 1, 0); + done_uri(uri); + } } static void