diff options
| author | patthoyts <patthoyts@users.sourceforge.net> | 2003-07-23 20:57:56 (GMT) | 
|---|---|---|
| committer | patthoyts <patthoyts@users.sourceforge.net> | 2003-07-23 20:57:56 (GMT) | 
| commit | 6248e23e7c565a5d6a254cf61caea7a49365cb2d (patch) | |
| tree | 6bce1dbfec192e9af38c88a8552b21d080e8f25e | |
| parent | 5cc61e2eb64eeec7fe4d7da197a6044781805915 (diff) | |
| download | tcl-6248e23e7c565a5d6a254cf61caea7a49365cb2d.zip tcl-6248e23e7c565a5d6a254cf61caea7a49365cb2d.tar.gz tcl-6248e23e7c565a5d6a254cf61caea7a49365cb2d.tar.bz2 | |
* win/tclWinReg.c:             Incremented the version to 1.1.2.
* library/reg/pkgIndex.tcl:
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rwxr-xr-x | library/reg/pkgIndex.tcl | 4 | ||||
| -rw-r--r-- | win/tclWinReg.c | 4 | 
3 files changed, 5 insertions, 4 deletions
| @@ -9,6 +9,7 @@  	* win/tclWinReg.c (OpenSubKey): Backported fix for bug 775976  	which causes the registry set command to fail when built with VC7. +	* library/reg/pkgIndex.tcl: Incremented the version to 1.1.2.  2003-07-21  Jeff Hobbs  <jeffh@ActiveState.com> diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 230d120..ad9a54b 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,8 +1,8 @@  if {![package vsatisfies [package provide Tcl] 8]} {return}  if {[info exists ::tcl_platform(debug)]} { -    package ifneeded registry 1.1.1 \ +    package ifneeded registry 1.1.2 \              [list load [file join $dir tclreg11g.dll] registry]  } else { -    package ifneeded registry 1.1.1 \ +    package ifneeded registry 1.1.2 \              [list load [file join $dir tclreg11.dll] registry]  } diff --git a/win/tclWinReg.c b/win/tclWinReg.c index 9ae0b73..75fc12b 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.21.2.1 2003/07/22 23:50:17 patthoyts Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.21.2.2 2003/07/23 20:57:57 patthoyts Exp $   */  #include <tclPort.h> @@ -228,7 +228,7 @@ Registry_Init(      }      Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd, NULL, NULL); -    return Tcl_PkgProvide(interp, "registry", "1.1.1"); +    return Tcl_PkgProvide(interp, "registry", "1.1.2");  }  /* | 
