##// END OF EJS Templates
help: limit documentation width to at most 80 characters...
Dirkjan Ochtman -
r13608:63ab6b0c default
parent child Browse files
Show More
@@ -1985,7 +1985,7 b' def help_(ui, name=None, with_version=Fa'
1985 1985 Returns 0 if successful.
1986 1986 """
1987 1987 option_lists = []
1988 textwidth = ui.termwidth() - 2
1988 textwidth = min(ui.termwidth(), 80) - 2
1989 1989
1990 1990 def addglobalopts(aliases):
1991 1991 if ui.verbose:
General Comments 0
You need to be logged in to leave comments. Login now