From bce8b746ac3658caac9e5eb6d0fc70e4db83293b Mon Sep 17 00:00:00 2001 From: FreeBirdLjj Date: Mon, 29 Sep 2014 14:09:12 +0800 Subject: [PATCH] Remove unused block. --- src/viewer.c | 71 +++++++++++++++++++++++++--------------------------- 1 file changed, 34 insertions(+), 37 deletions(-) diff --git a/src/viewer.c b/src/viewer.c index 40e4bd7..81614e1 100644 --- a/src/viewer.c +++ b/src/viewer.c @@ -455,53 +455,50 @@ void add_line(WINDOW *window, int y, int x, line_t *line, int max_cols, int colo wprintw(window, "%s", &line->text->text[offset]); - } else { - - // IS_H1 || IS_H2 - if(CHECK_BIT(line->bits, IS_H1) || CHECK_BIT(line->bits, IS_H2)) { + // IS_H1 || IS_H2 + } else if(CHECK_BIT(line->bits, IS_H1) || CHECK_BIT(line->bits, IS_H2)) { - // set headline color - if(colors) - wattron(window, COLOR_PAIR(CP_BLUE)); - - // enable underline for H1 - if(CHECK_BIT(line->bits, IS_H1)) - wattron(window, A_UNDERLINE); + // set headline color + if(colors) + wattron(window, COLOR_PAIR(CP_BLUE)); - // skip hashes - while(line->text->text[offset] == '#') - offset = next_word(line->text, offset); + // enable underline for H1 + if(CHECK_BIT(line->bits, IS_H1)) + wattron(window, A_UNDERLINE); - // print whole lines - wprintw(window, - "%s", &line->text->text[offset]); + // skip hashes + while(line->text->text[offset] == '#') + offset = next_word(line->text, offset); - wattroff(window, A_UNDERLINE); + // print whole lines + wprintw(window, + "%s", &line->text->text[offset]); - } else { + wattroff(window, A_UNDERLINE); - // IS_QUOTE - if(CHECK_BIT(line->bits, IS_QUOTE)) { - while(line->text->text[offset] == '>') { - // print a reverse color block - if(colors) { - wattron(window, COLOR_PAIR(CP_BLACK)); - wprintw(window, "%s", " "); - wattron(window, COLOR_PAIR(CP_WHITE)); - wprintw(window, "%s", " "); - } else { - wprintw(window, "%s", ">"); - } + } else { - // find next quote or break - offset++; - if(line->text->text[offset] == ' ') - offset = next_word(line->text, offset); + // IS_QUOTE + if(CHECK_BIT(line->bits, IS_QUOTE)) { + while(line->text->text[offset] == '>') { + // print a reverse color block + if(colors) { + wattron(window, COLOR_PAIR(CP_BLACK)); + wprintw(window, "%s", " "); + wattron(window, COLOR_PAIR(CP_WHITE)); + wprintw(window, "%s", " "); + } else { + wprintw(window, "%s", ">"); } - } - inline_display(window, &line->text->text[offset], colors); + // find next quote or break + offset++; + if(line->text->text[offset] == ' ') + offset = next_word(line->text, offset); + } } + + inline_display(window, &line->text->text[offset], colors); } // fill rest off line with spaces -- 2.20.1