diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-11-06 14:50:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-11-06 14:50:08 (GMT) |
commit | 27e8f4db3d5d3fa5840fc71f3cf231238ff2863b (patch) | |
tree | ed1481814af7c403e4d78d77e5b71ac61553071b /tools/checkLibraryDoc.tcl | |
parent | 9b30058284ab5a87d78cb96dcd63b95a7ada2393 (diff) | |
download | tcl-27e8f4db3d5d3fa5840fc71f3cf231238ff2863b.zip tcl-27e8f4db3d5d3fa5840fc71f3cf231238ff2863b.tar.gz tcl-27e8f4db3d5d3fa5840fc71f3cf231238ff2863b.tar.bz2 |
More tcl8 -> tcl9 renumbering, for example related to the installation of Tcl packages where tcl9 actually can find them.
Diffstat (limited to 'tools/checkLibraryDoc.tcl')
-rwxr-xr-x | tools/checkLibraryDoc.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkLibraryDoc.tcl b/tools/checkLibraryDoc.tcl index 6d147ac..a220ea8 100755 --- a/tools/checkLibraryDoc.tcl +++ b/tools/checkLibraryDoc.tcl @@ -3,7 +3,7 @@ # This script attempts to determine what APIs exist in the source base that # have not been documented. By grepping through all of the doc/*.3 man # pages, looking for "Pkg_*" (e.g., Tcl_ or Tk_), and comparing this list -# against the list of Pkg_ APIs found in the source (e.g., tcl8.2/*/*.[ch]) +# against the list of Pkg_ APIs found in the source (e.g., tcl9.0/*/*.[ch]) # we create six lists: # 1) APIs in Source not in Docs. # 2) APIs in Docs not in Source. @@ -106,7 +106,7 @@ proc main {} { if {($len != 2) && ($len != 3)} { puts "usage: $argv0 pkgName pkgDir \[outFile\]" puts " pkgName == Tcl,Tk" - puts " pkgDir == /home/surles/cvs/tcl8.2" + puts " pkgDir == /home/surles/cvs/tcl9.0" exit 1 } |