From f493b438fd2fd695a3082f780f192e570c299247 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 11 Dec 2020 17:20:45 +0900 Subject: 43946: call run-help for the command given to sudo --- ChangeLog | 5 +++++ Functions/Misc/run-help-sudo | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c478a9219..ea4b1cfab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-12-11 Jun-ichi Takimoto + + * Samir Benmendil: 43946: Functions/Misc/run-help-sudo: call + run-help (instead of man) for the command given to sudo + 2020-12-05 Bart Schaefer * unposted: Doc/Zsh/compsys.yo: index compprefuncs and comppostfuncs diff --git a/Functions/Misc/run-help-sudo b/Functions/Misc/run-help-sudo index f38696e19..a8fa7aa0f 100644 --- a/Functions/Misc/run-help-sudo +++ b/Functions/Misc/run-help-sudo @@ -2,6 +2,6 @@ if [ $# -eq 0 ]; then man sudo else - man $1 + run-help $1 fi -- cgit 1.4.1