aboutsummaryrefslogtreecommitdiffstats
path: root/lang/tcl-manual/files
diff options
context:
space:
mode:
authorpetef <petef@FreeBSD.org>2001-12-20 03:49:39 +0800
committerpetef <petef@FreeBSD.org>2001-12-20 03:49:39 +0800
commit335feb9a5330ae2dd1670bcedd514f383b7e0777 (patch)
treee4cd25a2f00197eef437cc109ceb236162325a34 /lang/tcl-manual/files
parentc1612e7c8d603b88c0b4299591a1a493af960e84 (diff)
downloadfreebsd-ports-gnome-335feb9a5330ae2dd1670bcedd514f383b7e0777.tar.gz
freebsd-ports-gnome-335feb9a5330ae2dd1670bcedd514f383b7e0777.tar.zst
freebsd-ports-gnome-335feb9a5330ae2dd1670bcedd514f383b7e0777.zip
Add tcl-manual 2001.12.19, documentation for TCL (Tool Command
Language). PR: 32925 Submitted by: Edwin Groothuis (edwin@mavetju.org)
Diffstat (limited to 'lang/tcl-manual/files')
-rw-r--r--lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::tclsh.htm31
-rw-r--r--lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::wish.htm31
-rw-r--r--lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::tclsh.htm31
-rw-r--r--lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::wish.htm31
4 files changed, 124 insertions, 0 deletions
diff --git a/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::tclsh.htm b/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::tclsh.htm
new file mode 100644
index 000000000000..53bc858669f8
--- /dev/null
+++ b/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::tclsh.htm
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- tcl8.3.4/html/UserCmd/tclsh.htm.orig Mon Dec 17 01:02:21 2001
++++ tcl8.3.4/html/UserCmd/tclsh.htm Mon Dec 17 01:02:48 2001
+@@ -21,7 +21,7 @@
+ <H3><A NAME="M2">NAME</A></H3>
+ tclsh - Simple shell containing Tcl interpreter
+ <H3><A NAME="M3">SYNOPSIS</A></H3>
+-<B>tclsh</B> ?<I>fileName arg arg ...</I>?<BR>
++<B>tclsh8.3</B> ?<I>fileName arg arg ...</I>?<BR>
+ <H3><A NAME="M4">DESCRIPTION</A></H3>
+ <B>Tclsh</B> is a shell-like application that reads Tcl commands
+ from its standard input or from a file and evaluates them.
+@@ -46,7 +46,7 @@
+ case, but the script file can always <B><A HREF="../TclCmd/source.htm">source</A></B> it if desired.
+ <P>
+ If you create a Tcl script in a file whose first line is
+-<PRE><B>#!/usr/local/bin/tclsh</B></PRE>
++<PRE><B>#!/usr/local/bin/tclsh8.3</B></PRE>
+ then you can invoke the script file directly from your shell if
+ you mark the file as executable.
+ This assumes that <B>tclsh</B> has been installed in the default
+@@ -60,7 +60,7 @@
+ following three lines:
+ <PRE><B>#!/bin/sh
+ # the next line restarts using tclsh &#92;
+-exec tclsh &quot;$0&quot; &quot;$@&quot;</B></PRE>
++exec tclsh8.3 &quot;$0&quot; &quot;$@&quot;</B></PRE>
+ This approach has three advantages over the approach in the previous
+ paragraph. First, the location of the <B>tclsh</B> binary doesn't have
+ to be hard-wired into the script: it can be anywhere in your shell
diff --git a/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::wish.htm b/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::wish.htm
new file mode 100644
index 000000000000..659ad3f208d0
--- /dev/null
+++ b/lang/tcl-manual/files/patch-tcl8.3.4::html::UserCmd::wish.htm
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- tcl8.3.4/html/UserCmd/wish.htm.orig Mon Dec 17 01:02:23 2001
++++ tcl8.3.4/html/UserCmd/wish.htm Mon Dec 17 01:03:12 2001
+@@ -35,7 +35,7 @@
+ <H3><A NAME="M2">NAME</A></H3>
+ wish - Simple windowing shell
+ <H3><A NAME="M3">SYNOPSIS</A></H3>
+-<B>wish</B> ?<I>fileName arg arg ...</I>?<BR>
++<B>wish8.3</B> ?<I>fileName arg arg ...</I>?<BR>
+ <H3><A NAME="M4">OPTIONS</A></H3>
+ <DL>
+ <P><DT><A NAME="M5"><B>-colormap </B><I>new</I></A><DD>
+@@ -143,7 +143,7 @@
+ <P></DL>
+ <H3><A NAME="M22">SCRIPT FILES</A></H3>
+ If you create a Tcl script in a file whose first line is
+-<PRE><B>#!/usr/local/bin/wish</B></PRE>
++<PRE><B>#!/usr/local/bin/wish8.3</B></PRE>
+ then you can invoke the script file directly from your shell if
+ you mark it as executable.
+ This assumes that <B>wish</B> has been installed in the default
+@@ -157,7 +157,7 @@
+ following three lines:
+ <PRE><B>#!/bin/sh
+ # the next line restarts using wish &#92;
+-exec wish &quot;$0&quot; &quot;$@&quot;</B></PRE>
++exec wish8.3 &quot;$0&quot; &quot;$@&quot;</B></PRE>
+ This approach has three advantages over the approach in the previous
+ paragraph. First, the location of the <B>wish</B> binary doesn't have
+ to be hard-wired into the script: it can be anywhere in your shell
diff --git a/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::tclsh.htm b/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::tclsh.htm
new file mode 100644
index 000000000000..9543b2657bd2
--- /dev/null
+++ b/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::tclsh.htm
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- tcl8.4a3/html/UserCmd/tclsh.htm.org Mon Dec 17 01:05:42 2001
++++ tcl8.4a3/html/UserCmd/tclsh.htm Mon Dec 17 01:06:06 2001
+@@ -21,7 +21,7 @@
+ <H3><A NAME="M2">NAME</A></H3>
+ tclsh - Simple shell containing Tcl interpreter
+ <H3><A NAME="M3">SYNOPSIS</A></H3>
+-<B>tclsh</B> ?<I>fileName arg arg ...</I>?<BR>
++<B>tclsh8.4</B> ?<I>fileName arg arg ...</I>?<BR>
+ <H3><A NAME="M4">DESCRIPTION</A></H3>
+ <B>Tclsh</B> is a shell-like application that reads Tcl commands
+ from its standard input or from a file and evaluates them.
+@@ -46,7 +46,7 @@
+ case, but the script file can always <B><A HREF="../TclCmd/source.htm">source</A></B> it if desired.
+ <P>
+ If you create a Tcl script in a file whose first line is
+-<PRE><B>#!/usr/local/bin/tclsh</B></PRE>
++<PRE><B>#!/usr/local/bin/tclsh8.4</B></PRE>
+ then you can invoke the script file directly from your shell if
+ you mark the file as executable.
+ This assumes that <B>tclsh</B> has been installed in the default
+@@ -60,7 +60,7 @@
+ following three lines:
+ <PRE><B>#!/bin/sh
+ # the next line restarts using tclsh &#92;
+-exec tclsh &quot;$0&quot; &quot;$@&quot;</B></PRE>
++exec tclsh8.4 &quot;$0&quot; &quot;$@&quot;</B></PRE>
+ This approach has three advantages over the approach in the previous
+ paragraph. First, the location of the <B>tclsh</B> binary doesn't have
+ to be hard-wired into the script: it can be anywhere in your shell
diff --git a/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::wish.htm b/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::wish.htm
new file mode 100644
index 000000000000..04659d15f8ca
--- /dev/null
+++ b/lang/tcl-manual/files/patch-tcl8.4a3::html::UserCmd::wish.htm
@@ -0,0 +1,31 @@
+$FreeBSD$
+
+--- tcl8.4a3/html/UserCmd/wish.htm.orig Mon Dec 17 00:35:48 2001
++++ tcl8.4a3/html/UserCmd/wish.htm Mon Dec 17 00:36:42 2001
+@@ -35,7 +35,7 @@
+ <H3><A NAME="M2">NAME</A></H3>
+ wish - Simple windowing shell
+ <H3><A NAME="M3">SYNOPSIS</A></H3>
+-<B>wish</B> ?<I>fileName arg arg ...</I>?<BR>
++<B>wish8.4</B> ?<I>fileName arg arg ...</I>?<BR>
+ <H3><A NAME="M4">OPTIONS</A></H3>
+ <DL>
+ <P><DT><A NAME="M5"><B>-colormap </B><I>new</I></A><DD>
+@@ -143,7 +143,7 @@
+ <P></DL>
+ <H3><A NAME="M22">SCRIPT FILES</A></H3>
+ If you create a Tcl script in a file whose first line is
+-<PRE><B>#!/usr/local/bin/wish</B></PRE>
++<PRE><B>#!/usr/local/bin/wish8.4</B></PRE>
+ then you can invoke the script file directly from your shell if
+ you mark it as executable.
+ This assumes that <B>wish</B> has been installed in the default
+@@ -157,7 +157,7 @@
+ following three lines:
+ <PRE><B>#!/bin/sh
+ # the next line restarts using wish &#92;
+-exec wish &quot;$0&quot; &quot;$@&quot;</B></PRE>
++exec wish8.4 &quot;$0&quot; &quot;$@&quot;</B></PRE>
+ This approach has three advantages over the approach in the previous
+ paragraph. First, the location of the <B>wish</B> binary doesn't have
+ to be hard-wired into the script: it can be anywhere in your shell