summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2008-10-04 18:06:47 (GMT)
committerdkf <dkf@noemail.net>2008-10-04 18:06:47 (GMT)
commit59b837a3fb7ee4ccb50e76bfda00d7779eb8e534 (patch)
tree5028aa392a5b1beb865716491aac742846558ad0 /generic/tclRegexp.c
parent94200aa0d49f928c5985480d3d7c473c16ddb5f1 (diff)
downloadtcl-59b837a3fb7ee4ccb50e76bfda00d7779eb8e534.zip
tcl-59b837a3fb7ee4ccb50e76bfda00d7779eb8e534.tar.gz
tcl-59b837a3fb7ee4ccb50e76bfda00d7779eb8e534.tar.bz2
More result hygiene.
FossilOrigin-Name: 5de0a3380dca014768c84ef8a7b420f2322444d7
Diffstat (limited to 'generic/tclRegexp.c')
-rw-r--r--generic/tclRegexp.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/generic/tclRegexp.c b/generic/tclRegexp.c
index 23a1c97..c82b474 100644
--- a/generic/tclRegexp.c
+++ b/generic/tclRegexp.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclRegexp.c,v 1.28 2007/12/13 15:23:20 dgp Exp $
+ * RCS: @(#) $Id: tclRegexp.c,v 1.29 2008/10/04 18:06:48 dkf Exp $
*/
#include "tclInt.h"
@@ -656,7 +656,7 @@ TclRegAbout(
{0, NULL}
};
const struct infoname *inf;
- Tcl_Obj *infoObj;
+ Tcl_Obj *infoObj, *resultObj;
/*
* The reset here guarantees that the interpreter result is empty and
@@ -672,7 +672,8 @@ TclRegAbout(
* well and Tcl has other limits that constrain things as well...
*/
- Tcl_ListObjAppendElement(NULL, Tcl_GetObjResult(interp),
+ resultObj = Tcl_NewObj();
+ Tcl_ListObjAppendElement(NULL, resultObj,
Tcl_NewIntObj((int) regexpPtr->re.re_nsub));
/*
@@ -686,7 +687,8 @@ TclRegAbout(
Tcl_NewStringObj(inf->text, -1));
}
}
- Tcl_ListObjAppendElement(NULL, Tcl_GetObjResult(interp), infoObj);
+ Tcl_ListObjAppendElement(NULL, resultObj, infoObj);
+ Tcl_SetObjResult(interp, resultObj);
return 0;
}