Skip to content

Commit b7f6544

Browse files
committed
refactor: fold comment lines on column 80
1 parent 7c04d0d commit b7f6544

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

bash_completion

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,21 +1594,22 @@ _comp_initialize()
15941594
local exclude="" opt_split="" outx="" errx="" inx=""
15951595

15961596
if ((${#FUNCNAME[@]} >= 2)); then
1597-
# Install "_comp_finalize" to the RETURN trap when "_init_completion" is
1598-
# called for the top-level completion. [ Note: the completion function may
1599-
# be called recursively using "_command_offset", etc. ]
1597+
# Install "_comp_finalize" to the RETURN trap when "_init_completion"
1598+
# is called for the top-level completion. [ Note: the completion
1599+
# function may be called recursively using "_command_offset", etc. ]
16001600
if ((${#_comp_finalize__depth[@]} == 0)); then
16011601
_comp_finalize__original_int_trap=$(trap -p INT)
16021602
if shopt -q extdebug || shopt -qo functrace; then
1603-
# If extdebug / functrace is set, we need to explicitly save and
1604-
# restore the original trap handler because the outer trap handlers
1605-
# will be affected by "trap - RETURN" inside functions with these
1606-
# settings.
1603+
# If extdebug / functrace is set, we need to explicitly save
1604+
# and restore the original trap handler because the outer trap
1605+
# handlers will be affected by "trap - RETURN" inside functions
1606+
# with these settings.
16071607
_comp_finalize__original_return_trap=$(trap -p RETURN)
16081608
else
1609-
# Otherwise, the outer RETURN trap will be restored when the RETURN
1610-
# trap is removed inside the functions using "trap - RETURN". So, we
1611-
# do not need to explicitly save the outer trap handler.
1609+
# Otherwise, the outer RETURN trap will be restored when the
1610+
# RETURN trap is removed inside the functions using "trap -
1611+
# RETURN". So, we do not need to explicitly save the outer
1612+
# trap handler.
16121613
_comp_finalize__original_return_trap=
16131614
fi
16141615

0 commit comments

Comments
 (0)