about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xbollux4
1 files changed, 2 insertions, 2 deletions
diff --git a/bollux b/bollux index 9055b5d..cdd98c9 100755 --- a/bollux +++ b/bollux
@@ -398,7 +398,7 @@ display() {
398 log d "typeset_$submime" 398 log d "typeset_$submime"
399 { 399 {
400 normalize_crlf | 400 normalize_crlf |
401 iconv -f "${charset^^}" -t "UTF-8" - | 401 iconv -f "${charset^^}" -t "UTF-8" |
402 tee "$BOLLUX_PAGESRC" | 402 tee "$BOLLUX_PAGESRC" |
403 run "typeset_$submime" | 403 run "typeset_$submime" |
404 run "${less_cmd[@]}" && bollux_quit 404 run "${less_cmd[@]}" && bollux_quit
@@ -407,7 +407,7 @@ display() {
407 log "cat" 407 log "cat"
408 { 408 {
409 normalize_crlf | 409 normalize_crlf |
410 iconv -f "${charset^^}" -t "UTF-8" - | 410 iconv -f "${charset^^}" -t "UTF-8" |
411 tee "$BOLLUX_PAGESRC" | 411 tee "$BOLLUX_PAGESRC" |
412 run "${less_cmd[@]}" && bollux_quit 412 run "${less_cmd[@]}" && bollux_quit
413 } || run handle_keypress "$?" 413 } || run handle_keypress "$?"