summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2006-07-30 16:18:59 (GMT)
committerjenglish <jenglish@flightlab.com>2006-07-30 16:18:59 (GMT)
commitd65e0fcd3ab6b395d6a6c9b2670d9e6ecccefdbd (patch)
treea2f48744f62bae3d00e18eab70396d84d1d9be50
parent9ec38166a2a344f4a845a53b0da6dca0f3f2b178 (diff)
downloadtcl-d65e0fcd3ab6b395d6a6c9b2670d9e6ecccefdbd.zip
tcl-d65e0fcd3ab6b395d6a6c9b2670d9e6ecccefdbd.tar.gz
tcl-d65e0fcd3ab6b395d6a6c9b2670d9e6ecccefdbd.tar.bz2
Fix typo [Bug 1496886]
-rw-r--r--ChangeLog4
-rw-r--r--doc/AppInit.34
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 713131e..dc22633 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-30 Joe English <jenglish@users.sourceforge.net>
+
+ * doc/AppInit.3: Fix typo [Bug 1496886]
+
2006-07-26 Don Porter <dgp@users.sourceforge.net>
* generic/tclExecute.c: Corrected flawed overflow detection in
diff --git a/doc/AppInit.3 b/doc/AppInit.3
index a06e9c7..3120b63 100644
--- a/doc/AppInit.3
+++ b/doc/AppInit.3
@@ -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: AppInit.3,v 1.4 2004/09/18 17:01:04 dkf Exp $
+'\" RCS: @(#) $Id: AppInit.3,v 1.5 2006/07/30 16:18:59 jenglish Exp $
'\"
.so man.macros
.TH Tcl_AppInit 3 7.0 Tcl "Tcl Library Procedures"
@@ -34,7 +34,7 @@ To create a new application you write a new version of
\fBTcl_AppInit\fR to replace the default version provided by Tcl,
then link your new \fBTcl_AppInit\fR with the Tcl library.
.PP
-\fBTcl_AppInit\fR is invoked after by \fBTcl_Main\fR and \fBTk_Main\fR
+\fBTcl_AppInit\fR is invoked by \fBTcl_Main\fR and \fBTk_Main\fR
after their own initialization and before entering the main loop
to process commands.
Here are some examples of things that \fBTcl_AppInit\fR might do: