diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2016-03-26 16:41:55 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2016-03-26 16:41:55 +0100 |
commit | f964495d1ac6587f04a3e2d216af512e240c8bed (patch) | |
tree | 06ec0c05846cbe16e286c66fc46f01320711c56b | |
parent | 550a0419a64f01e8b14f5ecaed6f1b8d190837f5 (diff) | |
download | xK-f964495d1ac6587f04a3e2d216af512e240c8bed.tar.gz xK-f964495d1ac6587f04a3e2d216af512e240c8bed.tar.xz xK-f964495d1ac6587f04a3e2d216af512e240c8bed.zip |
degesch: don't wrap lines in pager
-rw-r--r-- | degesch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3553,7 +3553,7 @@ formatter_flush (struct formatter *self, FILE *stream, bool raw_attributes) return; } - if (self->ctx->word_wrapping) + if (get_attribute_printer (stream) && self->ctx->word_wrapping) line = line_wrap (line, g_terminal.columns); // TODO: rewrite the sloppily hacked mess around attribute_printer; |