diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2010-11-08 09:02:50 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2010-11-08 09:02:50 (GMT) |
commit | 374805be10b32a06dafd8b1a22e29d9c394c6d06 (patch) | |
tree | 0d85644ab0b27650e95403c9a3435db449427f06 | |
parent | af7deb8aec29dc803cc0916298393e20ac753db9 (diff) | |
download | tcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.zip tcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.tar.gz tcl-374805be10b32a06dafd8b1a22e29d9c394c6d06.tar.bz2 |
Add missing 'objs' verb in error message.
-rw-r--r-- | generic/tclCkalloc.c | 6 |
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: */ |