Fixed line length compliance

This commit is contained in:
Steve Forget 2019-09-22 19:33:28 +02:00
parent f481d9f59c
commit aaf4a5497e
No known key found for this signature in database
GPG Key ID: 0377B7267CA511E6
1 changed files with 6 additions and 5 deletions

View File

@ -3208,7 +3208,7 @@ END
local ce_arg_idx local ce_arg_idx
local ce_conf local ce_conf
# Could have used `eval set -- "$ConEmuArgs"` instead for arg parsing but eval is evil... # Could have used `eval set -- "$ConEmuArgs"` instead for arg parsing
readarray -t ce_arg_list < <(xargs -n1 printf "%s\n" <<< "${ConEmuArgs-}") readarray -t ce_arg_list < <(xargs -n1 printf "%s\n" <<< "${ConEmuArgs-}")
for ce_arg_idx in "${!ce_arg_list[@]}"; do for ce_arg_idx in "${!ce_arg_list[@]}"; do
@ -3237,13 +3237,14 @@ END
[[ ! -f "$ce_conf" ]] && continue [[ ! -f "$ce_conf" ]] && continue
# Very basic XML parsing # Very basic XML parsing
term_font="$(awk '/name="FontName"/ && match($0, /data="([^"]*)"/) {print substr($0, RSTART+6, RLENGTH-7)}' "$ce_conf")" term_font="$(awk '/name="FontName"/ && match($0, /data="([^"]*)"/) \
{print substr($0, RSTART+6, RLENGTH-7)}' "$ce_conf")"
break break
done done
# Null-terminated contents in /proc/registry files triggers a Bash warning. Use read instead # Null-terminated contents in /proc/registry files triggers a Bash warning
[[ -z "$term_font" ]] && \ [[ -z "$term_font" ]] && read -r term_font < \
read -r term_font < /proc/registry/HKEY_CURRENT_USER/Software/ConEmu/.Vanilla/FontName /proc/registry/HKEY_CURRENT_USER/Software/ConEmu/.Vanilla/FontName
;; ;;
esac esac
} }