aboutsummaryrefslogtreecommitdiff
path: root/pkg/softools/mkmanpage.cl
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/softools/mkmanpage.cl')
-rw-r--r--pkg/softools/mkmanpage.cl15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/softools/mkmanpage.cl b/pkg/softools/mkmanpage.cl
new file mode 100644
index 00000000..e78af577
--- /dev/null
+++ b/pkg/softools/mkmanpage.cl
@@ -0,0 +1,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)
+}