summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorwelch <welch>1999-08-13 19:01:04 (GMT)
committerwelch <welch>1999-08-13 19:01:04 (GMT)
commita68fb83f3a0ddf20cf49ad435a61c41cfc0dd1f3 (patch)
treecd3b66e53e6a65190b6a673870942177b430aaf5 /doc
parent9f97a0a02a4ee62615ed9671d5e88017abde1ff3 (diff)
downloadtcl-a68fb83f3a0ddf20cf49ad435a61c41cfc0dd1f3.zip
tcl-a68fb83f3a0ddf20cf49ad435a61c41cfc0dd1f3.tar.gz
tcl-a68fb83f3a0ddf20cf49ad435a61c41cfc0dd1f3.tar.bz2
Minor tweaks to get these pages through the HTML converterscriptics_tclpro_1_3_0core_8_2_0
Diffstat (limited to 'doc')
-rw-r--r--doc/GetIndex.34
-rw-r--r--doc/catch.n6
-rw-r--r--doc/tcltest.n12
3 files changed, 9 insertions, 13 deletions
diff --git a/doc/GetIndex.3 b/doc/GetIndex.3
index 8ba28ba..000c5e4 100644
--- a/doc/GetIndex.3
+++ b/doc/GetIndex.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: GetIndex.3,v 1.4 1999/06/28 23:49:31 redman Exp $
+'\" RCS: @(#) $Id: GetIndex.3,v 1.5 1999/08/13 19:01:04 welch Exp $
'\"
.so man.macros
.TH Tcl_GetIndexFromObj 3 8.1 Tcl "Tcl Library Procedures"
@@ -82,7 +82,7 @@ the matching index immediately without having to redo the lookup
operation. Note: \fBTcl_GetIndexFromObj\fR assumes that the entries
in \fItablePtr\fR are static: they must not change between
invocations. If the value of \fIobjPtr\fR is the empty string,
-\fTcl_GetIndexFromObj\fR will treat it as a non-matching value
+\fBTcl_GetIndexFromObj\fR will treat it as a non-matching value
and return TCL_ERROR.
.VS
.PP
diff --git a/doc/catch.n b/doc/catch.n
index 23771f9..885768f 100644
--- a/doc/catch.n
+++ b/doc/catch.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: catch.n,v 1.3 1999/04/16 00:46:34 stanton Exp $
+'\" RCS: @(#) $Id: catch.n,v 1.4 1999/08/13 19:01:04 welch Exp $
'\"
.so man.macros
.TH catch n "8.0" Tcl "Tcl Built-In Commands"
@@ -46,25 +46,21 @@ error.
The \fBcatch\fR command may be used in an \fBif\fR to branch based on
the success of a script.
-.DS
.CS
if { [catch {open $someFile w} fid] } {
puts stderr "Could not open $someFile for writing\\n$fid"
exit 1
}
.CE
-.DE
The \fBcatch\fR command will not catch compiled syntax errors. The
first time proc \fBfoo\fR is called, the body will be compiled and a
Tcl error will be generated.
-.DS
.CS
proc foo {} {
catch {expr {1 +- }}
}
.CE
-.DE
.SH KEYWORDS
catch, error
diff --git a/doc/tcltest.n b/doc/tcltest.n
index 557fac3..f597bd8 100644
--- a/doc/tcltest.n
+++ b/doc/tcltest.n
@@ -6,7 +6,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: tcltest.n,v 1.4 1999/07/26 22:50:53 jenn Exp $
+'\" RCS: @(#) $Id: tcltest.n,v 1.5 1999/08/13 19:01:05 welch Exp $
'\"
.so man.macros
.TH "Tcltest" n 8.2 Tcl "Tcl Built-In Commands"
@@ -21,7 +21,7 @@ Tcltest \- Test harness support code and utilities
.sp
\fB::tcltest::cleanupTests \fI?runningMultipleTests?\fR
.sp
-\fB::tcltest::getMatchingTestFiles
+\fB::tcltest::getMatchingTestFiles\fR
.sp
\fB::tcltest::makeFile \fIcontents name\fR
.sp
@@ -37,11 +37,11 @@ Tcltest \- Test harness support code and utilities
.sp
\fB::tcltest::bytestring \fIstring\fR
.sp
-\fB::tcltest::saveState
+\fB::tcltest::saveState\fR
.sp
-\fB::tcltest::restoreState
+\fB::tcltest::restoreState\fR
.sp
-\fB::tcltest::threadReap
+\fB::tcltest::threadReap\fR
.BE
.SH DESCRIPTION
.PP
@@ -617,7 +617,7 @@ print additional usage information specific to your situation.
\fB::tcltest::processCmdLineArgsFlagHook\fP
tell the test harness about additional flags that you want it to understand.
.TP
-\fB::tcltest::processCmdLineArgsHook\fR flags\fP
+\fB::tcltest::processCmdLineArgsHook\fR \fIflags\fP
process the additional flags that you told the harness about in
::tcltest::processCmdLineArgsFlagHook.
.TP