summaryrefslogtreecommitdiffstats
path: root/doc/source.n
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-10-26 20:11:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-10-26 20:11:50 (GMT)
commit6b9dd216db20bac6c76552a6193d67a01e1d34ee (patch)
treeb86166558de62f70eef1a7524fac75f7b47a4f44 /doc/source.n
parent236c395276f8f1cf4d5b745ea490b4966e6eb148 (diff)
downloadtcl-6b9dd216db20bac6c76552a6193d67a01e1d34ee.zip
tcl-6b9dd216db20bac6c76552a6193d67a01e1d34ee.tar.gz
tcl-6b9dd216db20bac6c76552a6193d67a01e1d34ee.tar.bz2
* changes: Updated for 8.5b2 release.core_8_5_b2
* doc/*.1: Revert doc changes that broke * doc/*.3: `make html` so we can get the release * doc/*.n: out the door.
Diffstat (limited to 'doc/source.n')
-rw-r--r--doc/source.n24
1 files changed, 9 insertions, 15 deletions
diff --git a/doc/source.n b/doc/source.n
index a5b6ebe..c12efff 100644
--- a/doc/source.n
+++ b/doc/source.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: source.n,v 1.13 2007/10/25 14:07:32 dkf Exp $
+'\" RCS: @(#) $Id: source.n,v 1.14 2007/10/26 20:11:53 dgp Exp $
'\"
.so man.macros
.TH source n "" Tcl "Tcl Built-In Commands"
@@ -21,6 +21,7 @@ source \- Evaluate a file or resource as a Tcl script
\fBsource\fR \fB\-encoding \fIencodingName fileName\fR
.VE 8.5
.BE
+
.SH DESCRIPTION
.PP
This command takes the contents of the specified file or resource
@@ -32,21 +33,13 @@ If a \fBreturn\fR command is invoked from within the script then the
remainder of the file will be skipped and the \fBsource\fR command
will return normally with the result from the \fBreturn\fR command.
.PP
-The end-of-file character for files is
-.QW \e032
-(^Z) for all platforms. The source command will read files up to this
-character. This
+The end-of-file character for files is '\\32' (^Z) for all platforms.
+The source command will read files up to this character. This
restriction does not exist for the \fBread\fR or \fBgets\fR commands,
allowing for files containing code and data segments (scripted documents).
-If you require a
-.QW ^Z
-in code for string comparison, you can use
-.QW \e032
-or
-.QW \eu001a ,
-which will be safely substituted by the Tcl
-interpreter into
-.QW ^Z .
+If you require a ``^Z'' in code for string comparison, you can use
+``\\032'' or ``\\u001a'', which will be safely substituted by the Tcl
+interpreter into ``^Z''.
.PP
.VS 8.5
The \fB-encoding\fR option is used to specify the encoding of
@@ -60,14 +53,15 @@ file \fBbar.tcl\fR:
\fBsource\fR foo.tcl
\fBsource\fR bar.tcl
.CE
-.PP
Alternatively:
.CS
foreach scriptFile {foo.tcl bar.tcl} {
\fBsource\fR $scriptFile
}
.CE
+
.SH "SEE ALSO"
file(n), cd(n), encoding(n), info(n)
+
.SH KEYWORDS
file, script