diff options
author | davygrvy <davygrvy@pobox.com> | 2002-05-08 12:20:15 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-05-08 12:20:15 (GMT) |
commit | 394914a34e61aec7283ff0d6d3bb4eea91ed09b8 (patch) | |
tree | 35d6e1defa5ea1bde260901e505309f4c4eae69d /tools/man2help2.tcl | |
parent | edd4829c7ffa045a42c7ccc5e71e15d128d64e63 (diff) | |
download | tcl-394914a34e61aec7283ff0d6d3bb4eea91ed09b8.zip tcl-394914a34e61aec7283ff0d6d3bb4eea91ed09b8.tar.gz tcl-394914a34e61aec7283ff0d6d3bb4eea91ed09b8.tar.bz2 |
Proper source of macro error misunderstanding ' as the leading macro
command found and repaired.
Diffstat (limited to 'tools/man2help2.tcl')
-rw-r--r-- | tools/man2help2.tcl | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/tools/man2help2.tcl b/tools/man2help2.tcl index acf0d88..875f9a6 100644 --- a/tools/man2help2.tcl +++ b/tools/man2help2.tcl @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: man2help2.tcl,v 1.9 2002/05/08 04:23:42 davygrvy Exp $ +# RCS: @(#) $Id: man2help2.tcl,v 1.10 2002/05/08 12:20:15 davygrvy Exp $ # # Global variables used by these scripts: @@ -684,22 +684,6 @@ proc char {name} { } -# macro2 -- -# -# This procedure handles macros that are invoked with a leading "'" -# character instead of space. Right now it just generates an -# error diagnostic. -# -# Arguments: -# name - The name of the macro (without the "."). -# args - Any additional arguments to the macro. - -proc macro2 {name args} { - puts stderr "Unknown macro: '$name [join $args " "]" -} - - - # SHmacro -- # # Subsection head; handles the .SH macro. |