about summary refs log tree commit diff stats
path: root/bollux
diff options
context:
space:
mode:
Diffstat (limited to 'bollux')
-rwxr-xr-xbollux4
1 files changed, 2 insertions, 2 deletions
diff --git a/bollux b/bollux index ae1f272..3e7d6d1 100755 --- a/bollux +++ b/bollux
@@ -9,8 +9,6 @@ PRGN="${0##*/}"
9VRSN=0.2 9VRSN=0.2
10# State 10# State
11REDIRECTS=0 11REDIRECTS=0
12# Bash options
13# shopt -s extglob
14 12
15bollux_usage() { 13bollux_usage() {
16 cat <<END 14 cat <<END
@@ -418,9 +416,11 @@ mklesskey() {
418} 416}
419 417
420normalize_crlf() { 418normalize_crlf() {
419 shopt -s extglob
421 while IFS= read -r; do 420 while IFS= read -r; do
422 printf '%s\n' "${REPLY//$'\r'?($'\n')/}" 421 printf '%s\n' "${REPLY//$'\r'?($'\n')/}"
423 done 422 done
423 shopt -u extglob
424} 424}
425 425
426typeset_gemini() { 426typeset_gemini() {