changeset 26415 | 46af0adb5c37 |
parent 26414 | c44b507e7c78 |
child 26436 | a2291c9c85a1 |
--- a/mercurial/help.py Sat Sep 26 12:11:46 2015 +0900 +++ b/mercurial/help.py Sat Sep 26 12:17:44 2015 +0900 @@ -191,7 +191,8 @@ entries = [] for name in sorted(items): text = (items[name].__doc__ or '').rstrip() - if not text: + if (not text + or not ui.verbose and any(w in text for w in _exclkeywords)): continue text = gettext(text) if dedent: