summaryrefslogtreecommitdiffstats
path: root/generic/tclCkalloc.c
diff options
context:
space:
mode:
authorferrieux <ferrieux@users.sourceforge.net>2010-11-08 09:02:50 (GMT)
committerferrieux <ferrieux@users.sourceforge.net>2010-11-08 09:02:50 (GMT)
commit374805be10b32a06dafd8b1a22e29d9c394c6d06 (patch)
tree0d85644ab0b27650e95403c9a3435db449427f06 /generic/tclCkalloc.c
parentaf7deb8aec29dc803cc0916298393e20ac753db9 (diff)
downloadtcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.zip
tcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.tar.gz
tcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.tar.bz2
Add missing 'objs' verb in error message.
Diffstat (limited to 'generic/tclCkalloc.c')
-rw-r--r--generic/tclCkalloc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c
index 8ffdda1..872053b 100644
--- a/generic/tclCkalloc.c
+++ b/generic/tclCkalloc.c
@@ -14,7 +14,7 @@
*
* This code contributed by Karl Lehenbauer and Mark Diekhans
*
- * RCS: @(#) $Id: tclCkalloc.c,v 1.39 2010/10/02 00:23:44 hobbs Exp $
+ * RCS: @(#) $Id: tclCkalloc.c,v 1.40 2010/11/08 09:02:50 ferrieux Exp $
*/
#include "tclInt.h"
@@ -948,7 +948,7 @@ MemoryCmd(
}
Tcl_AppendResult(interp, "bad option \"", argv[1],
- "\": should be active, break_on_malloc, info, init, onexit, "
+ "\": should be active, break_on_malloc, info, init, objs, onexit, "
"tag, trace, trace_on_at_malloc, or validate", NULL);
return TCL_ERROR;
@@ -1315,5 +1315,7 @@ TclFinalizeMemorySubsystem(void)
* mode: c
* c-basic-offset: 4
* fill-column: 78
+ * tab-width: 8
+ * indent-tabs-mode: nil
* End:
*/