summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-20 16:24:44 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-20 16:24:44 (GMT)
commita5af327b809440e5772560d8c7fc7bd53193c371 (patch)
tree0bb3e3ab1a3789932e6abc97931b30b353d16898 /doc
parent330b4025da17961f1ef69149584fb7c15d284f76 (diff)
downloadtcl-a5af327b809440e5772560d8c7fc7bd53193c371.zip
tcl-a5af327b809440e5772560d8c7fc7bd53193c371.tar.gz
tcl-a5af327b809440e5772560d8c7fc7bd53193c371.tar.bz2
* doc/load.n: Backport corrected example.
Diffstat (limited to 'doc')
-rw-r--r--doc/load.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/load.n b/doc/load.n
index ea5c7f3..86149b2 100644
--- a/doc/load.n
+++ b/doc/load.n
@@ -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: load.n,v 1.7.2.1 2004/10/27 12:52:40 dkf Exp $
+'\" RCS: @(#) $Id: load.n,v 1.7.2.2 2007/09/20 16:24:46 dgp Exp $
'\"
.so man.macros
.TH load n 7.5 Tcl "Tcl Built-In Commands"
@@ -132,7 +132,7 @@ The following is a minimal extension:
#include <tcl.h>
#include <stdio.h>
static int fooCmd(ClientData clientData,
- Tcl_Interp *interp, int objc, char * CONST objv[]) {
+ Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]) {
printf("called with %d arguments\\n", objc);
return TCL_OK;
}
@@ -154,10 +154,10 @@ it can then be loaded into Tcl with the following:
# Load the extension
switch $tcl_platform(platform) {
windows {
- \fBload\fR ./foo.dll
+ \fBload\fR [file join [pwd] foo.dll]
}
unix {
- \fBload\fR ./libfoo[info sharedlibextension]
+ \fBload\fR [file join [pwd] libfoo[info sharedlibextension]]
}
}