summaryrefslogtreecommitdiffstats
path: root/generic/tclCompExpr.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r--generic/tclCompExpr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c
index e095f6d..f8ae67c 100644
--- a/generic/tclCompExpr.c
+++ b/generic/tclCompExpr.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: tclCompExpr.c,v 1.53.2.14 2008/01/25 16:43:51 dgp Exp $
+ * RCS: @(#) $Id: tclCompExpr.c,v 1.53.2.15 2008/03/07 22:05:03 dgp Exp $
*/
#include "tclInt.h"
@@ -111,7 +111,7 @@ enum OperandTypes {
enum Marks {
MARK_LEFT, /* Next step of traversal is to visit left subtree */
MARK_RIGHT, /* Next step of traversal is to visit right subtree */
- MARK_PARENT, /* Next step of traversal is to return to parent */
+ MARK_PARENT /* Next step of traversal is to return to parent */
};
/*
@@ -759,8 +759,8 @@ ParseExpr(
end - lastStart);
if (TclCheckBadOctal(NULL,
Tcl_GetString(copy))) {
- TclNewLiteralStringObj(post,
- "(invalid octal number?)");
+ Tcl_AppendToObj(post,
+ "(invalid octal number?)", -1);
}
Tcl_DecrRefCount(copy);
}