run-hook-wrapped
run-hook-wrapped is a built-in function in `C source code
'.
(run-hook-wrapped HOOK WRAP-FUNCTION &rest ARGS)
Run HOOK, passing each function through WRAP-FUNCTION.
I.e. instead of calling each function FUN directly with arguments ARGS,
it calls WRAP-FUNCTION with arguments FUN and ARGS.
As soon as a call to WRAP-FUNCTION returns non-nil, `run-hook-wrapped'
aborts and returns that value.