summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2002-08-05 15:01:01 (GMT)
committerdgp@users.sourceforge.net <dgp>2002-08-05 15:01:01 (GMT)
commita66311379019dd6e20ae3b09a78fea2f4e9daf16 (patch)
tree539a2b1951a7f7862046181f77737b3fd35b57d2 /generic/tclUtil.c
parent3704bec4ac61f08593055ee78ef46edfdd50517e (diff)
downloadtcl-a66311379019dd6e20ae3b09a78fea2f4e9daf16.zip
tcl-a66311379019dd6e20ae3b09a78fea2f4e9daf16.tar.gz
tcl-a66311379019dd6e20ae3b09a78fea2f4e9daf16.tar.bz2
* generic/tcl.decls: Restored Tcl_Concat to return (char *). Like
* generic/tclDecls.h: Tcl_Merge, it transfers ownership of a dynamic * generic/tclUtil.c: allocated string to the caller.
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r--generic/tclUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index 683f752..8bb3d1b 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.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: tclUtil.c,v 1.33 2002/08/05 03:24:41 dgp Exp $
+ * RCS: @(#) $Id: tclUtil.c,v 1.34 2002/08/05 15:01:05 dgp Exp $
*/
#include "tclInt.h"
@@ -947,7 +947,7 @@ Tcl_Backslash(src, readPtr)
*----------------------------------------------------------------------
*/
-CONST char *
+char *
Tcl_Concat(argc, argv)
int argc; /* Number of strings to concatenate. */
CONST char * CONST *argv; /* Array of strings to concatenate. */