blob: e78af5770ba97227352384bf6f1c5c841abfe7a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#{ MKMANPAGE -- Make a template for a manual page, ready to be filled in.
# Leaves us in the editor.
#
# mkmanpage (module)
{
fname = module // ".hlp"
if (clformat)
copy (cltemplate, fname)
else
copy (xtemplate, fname)
edit (fname)
}
|