diff options
Diffstat (limited to 'src/fe-text/textbuffer-view.c')
-rw-r--r-- | src/fe-text/textbuffer-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-text/textbuffer-view.c b/src/fe-text/textbuffer-view.c index 9960911c..135c5323 100644 --- a/src/fe-text/textbuffer-view.c +++ b/src/fe-text/textbuffer-view.c @@ -189,7 +189,7 @@ view_update_line_cache(TEXT_BUFFER_VIEW_REC *view, LINE_REC *line) cmd = *ptr; ptr++; - if (cmd == LINE_CMD_EOL || cmd == LINE_CMD_FORMAT) + if (cmd == LINE_CMD_EOL) break; if (cmd == LINE_CMD_CONTINUE) { @@ -419,7 +419,7 @@ static int view_line_draw(TEXT_BUFFER_VIEW_REC *view, LINE_REC *line, if (*text == '\0') { /* command */ text++; - if (*text == LINE_CMD_EOL || *text == LINE_CMD_FORMAT) + if (*text == LINE_CMD_EOL) break; if (*text == LINE_CMD_CONTINUE) { |