about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-06-02 21:05:42 -0500
committerCase Duckworth2020-06-02 21:05:42 -0500
commit92eef0011c262ddb1e31bd57558370f2971a7028 (patch)
tree1b20621351766958c4c8fe9497bbfa4ae3672ab0
parentMerge branch 'master' into history (diff)
downloadbollux-92eef0011c262ddb1e31bd57558370f2971a7028.tar.gz
bollux-92eef0011c262ddb1e31bd57558370f2971a7028.zip
Remove iconv dash
-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 "$?"