Skip to content

Commit a2353b1

Browse files
committed
fix(autotools): quote words
!fixup aclocal reword autoconf/automake
1 parent 77c9fd6 commit a2353b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

completions/aclocal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ _comp_cmd_aclocal()
2020
--warnings | -W)
2121
local cats=(syntax unsupported)
2222
COMPREPLY=($(compgen -W \
23-
'${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
23+
'"${cats[@]}" "${cats[@]/#/no-}" all none error' -- "$cur"))
2424
return
2525
;;
2626
esac

completions/autoconf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _comp_cmd_autoconf()
1616
--warnings | -W)
1717
local cats=(cross obsolete syntax)
1818
COMPREPLY=($(compgen -W \
19-
'${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
19+
'"${cats[@]}" "${cats[@]/#/no-}" all none error' -- "$cur"))
2020
return
2121
;;
2222
--prepend-include | -B | --include | -I)

completions/automake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ _comp_cmd_automake()
1212
--warnings | -W)
1313
local cats=(gnu obsolete override portability syntax unsupported)
1414
COMPREPLY=($(compgen -W \
15-
'${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
15+
'"${cats[@]}" "${cats[@]/#/no-}" all none error' -- "$cur"))
1616
return
1717
;;
1818
--libdir)

completions/autoreconf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ _comp_cmd_autoreconf()
1313
local cats=(cross gnu obsolete override portability syntax
1414
unsupported)
1515
COMPREPLY=($(compgen -W \
16-
'${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
16+
'"${cats[@]}" "${cats[@]/#/no-}" all none error' -- "$cur"))
1717
return
1818
;;
1919
--prepend-include | -B | --include | -I)

0 commit comments

Comments
 (0)