diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:39:39 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 19:39:39 (GMT) |
commit | ea28451286d3ea4a772fa174483f9a7a66bb1ab3 (patch) | |
tree | 6ee9d8a7848333a7ceeee3b13d492e40225f8b86 /tcllib/modules/doctools/mpformats/fmt.null | |
parent | b5ca09bae0d6a1edce939eea03594dd56383f2c8 (diff) | |
parent | 7c621da28f07e449ad90c387344f07a453927569 (diff) | |
download | blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.zip blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.tar.gz blt-ea28451286d3ea4a772fa174483f9a7a66bb1ab3.tar.bz2 |
Merge commit '7c621da28f07e449ad90c387344f07a453927569' as 'tcllib'
Diffstat (limited to 'tcllib/modules/doctools/mpformats/fmt.null')
-rw-r--r-- | tcllib/modules/doctools/mpformats/fmt.null | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tcllib/modules/doctools/mpformats/fmt.null b/tcllib/modules/doctools/mpformats/fmt.null new file mode 100644 index 0000000..1b2eee0 --- /dev/null +++ b/tcllib/modules/doctools/mpformats/fmt.null @@ -0,0 +1,30 @@ +# -*- tcl -*- +# +# -- Null format +# +# Copyright (c) 2001-2002 Andreas Kupries <andreas_kupries@sourceforge.net> +# Copyright (c) 2003 Andreas Kupries <andreas_kupries@sourceforge.net> + +# This is a null format which does return no output at all. + +################################################################ + +proc fmt_initialize {} {return} +proc fmt_shutdown {} {return} +proc fmt_numpasses {} {return 1} +proc fmt_postprocess {text} {return ""} +proc fmt_plain_text {text} {return ""} +proc fmt_setup {n} {return} + +foreach p { + manpage_begin moddesc titledesc manpage_end require description + section para list_begin list_end lst_item call usage bullet enum + arg_def cmd_def opt_def tkoption_def see_also keywords example + example_begin example_end nl arg cmd opt emph comment image mdash + sectref syscmd method option widget fun type package class var + file uri term const copyright namespace subsection category ndash +} { + proc fmt_$p {args} {return ""} +} + +################################################################ |