From 5a9a9f9cde0080ae85a0aa8ff42f40947b3c5da6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 31 Oct 2018 09:24:20 +1300 Subject: Add left-parens to inner case statements This helps older versions of Bash understand that the surrounding subshell isn't terminating. --- bash/bash_completion.d/man.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bash/bash_completion.d/man.bash') diff --git a/bash/bash_completion.d/man.bash b/bash/bash_completion.d/man.bash index d0d4f9b2..3e2cc5be 100644 --- a/bash/bash_completion.d/man.bash +++ b/bash/bash_completion.d/man.bash @@ -39,9 +39,9 @@ _man() { # to find this value? while read -r _ option value ; do case $option in - completion-ignore-case) + (completion-ignore-case) case $value in - on) + (on) shopt -s nocaseglob break ;; -- cgit v1.2.3