Skip to content

Commit 8d41bf5

Browse files
committed
refactor: fold comment lines on column 80
1 parent 1d5163b commit 8d41bf5

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
@@ -1444,21 +1444,22 @@ _comp_initialize()
14441444
local exclude="" opt_split="" outx="" errx="" inx=""
14451445

14461446
if ((${#FUNCNAME[@]} >= 2)); then
1447-
# Install "_comp_finalize" to the RETURN trap when "_init_completion" is
1448-
# called for the top-level completion. [ Note: the completion function may
1449-
# be called recursively using "_command_offset", etc. ]
1447+
# Install "_comp_finalize" to the RETURN trap when "_init_completion"
1448+
# is called for the top-level completion. [ Note: the completion
1449+
# function may be called recursively using "_command_offset", etc. ]
14501450
if ((${#_comp_finalize__depth[@]} == 0)); then
14511451
_comp_finalize__original_int_trap=$(trap -p INT)
14521452
if shopt -q extdebug || shopt -qo functrace; then
1453-
# If extdebug / functrace is set, we need to explicitly save and
1454-
# restore the original trap handler because the outer trap handlers
1455-
# will be affected by "trap - RETURN" inside functions with these
1456-
# settings.
1453+
# If extdebug / functrace is set, we need to explicitly save
1454+
# and restore the original trap handler because the outer trap
1455+
# handlers will be affected by "trap - RETURN" inside functions
1456+
# with these settings.
14571457
_comp_finalize__original_return_trap=$(trap -p RETURN)
14581458
else
1459-
# Otherwise, the outer RETURN trap will be restored when the RETURN
1460-
# trap is removed inside the functions using "trap - RETURN". So, we
1461-
# do not need to explicitly save the outer trap handler.
1459+
# Otherwise, the outer RETURN trap will be restored when the
1460+
# RETURN trap is removed inside the functions using "trap -
1461+
# RETURN". So, we do not need to explicitly save the outer
1462+
# trap handler.
14621463
_comp_finalize__original_return_trap=
14631464
fi
14641465

0 commit comments

Comments
 (0)