diff options
| author | davygrvy@pobox.com <davygrvy> | 2002-11-02 22:07:06 (GMT) |
|---|---|---|
| committer | davygrvy@pobox.com <davygrvy> | 2002-11-02 22:07:06 (GMT) |
| commit | a8e9ba51e46a413abb6d7116f657f77004c5b0d4 (patch) | |
| tree | 678a8db40331c6ea21bd6c1eff8ec38044cfb671 /win/tclWinReg.c | |
| parent | d4bb25164e2902680055e587f51acfe51d64ffd1 (diff) | |
| download | tcl-a8e9ba51e46a413abb6d7116f657f77004c5b0d4.zip tcl-a8e9ba51e46a413abb6d7116f657f77004c5b0d4.tar.gz tcl-a8e9ba51e46a413abb6d7116f657f77004c5b0d4.tar.bz2 | |
Updated Tcl_PkgProvide() line in Registry_Init() to use "1.1" instead of "1.0"
Diffstat (limited to 'win/tclWinReg.c')
| -rw-r--r-- | win/tclWinReg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index f806fc3..cf7ff0f 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.18 2002/10/18 23:58:18 hobbs Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.19 2002/11/02 22:07:06 davygrvy Exp $ */ #include <tclPort.h> @@ -228,7 +228,7 @@ Registry_Init( } Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd, NULL, NULL); - return Tcl_PkgProvide(interp, "registry", "1.0"); + return Tcl_PkgProvide(interp, "registry", "1.1"); } /* |
