@@ -1092,21 +1092,22 @@ _comp_initialize()
10921092 local exclude=" " opt_split=" " outx errx inx
10931093
10941094 if (( ${# FUNCNAME[@]} >= 2 )) ; then
1095- # Install "_comp_finalize" to the RETURN trap when "_init_completion" is
1096- # called for the top-level completion. [ Note: the completion function may
1097- # be called recursively using "_command_offset", etc. ]
1095+ # Install "_comp_finalize" to the RETURN trap when "_init_completion"
1096+ # is called for the top-level completion. [ Note: the completion
1097+ # function may be called recursively using "_command_offset", etc. ]
10981098 if (( ${# _comp_finalize__depth[@]} == 0 )) ; then
10991099 _comp_finalize__original_int_trap=$( trap -p INT)
11001100 if shopt -q extdebug || shopt -qo functrace; then
1101- # If extdebug / functrace is set, we need to explicitly save and
1102- # restore the original trap handler because the outer trap handlers
1103- # will be affected by "trap - RETURN" inside functions with these
1104- # settings.
1101+ # If extdebug / functrace is set, we need to explicitly save
1102+ # and restore the original trap handler because the outer trap
1103+ # handlers will be affected by "trap - RETURN" inside functions
1104+ # with these settings.
11051105 _comp_finalize__original_return_trap=$( trap -p RETURN)
11061106 else
1107- # Otherwise, the outer RETURN trap will be restored when the RETURN
1108- # trap is removed inside the functions using "trap - RETURN". So, we
1109- # do not need to explicitly save the outer trap handler.
1107+ # Otherwise, the outer RETURN trap will be restored when the
1108+ # RETURN trap is removed inside the functions using "trap -
1109+ # RETURN". So, we do not need to explicitly save the outer
1110+ # trap handler.
11101111 _comp_finalize__original_return_trap=
11111112 fi
11121113
0 commit comments