summaryrefslogtreecommitdiffstats
path: root/generic/tclBinary.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2009-01-09 11:21:45 (GMT)
committerdkf <dkf@noemail.net>2009-01-09 11:21:45 (GMT)
commitfa315dba1db389b3ab991fb90927359a8580ca06 (patch)
tree4aa51d7f8297e2b7b5f11c316610f06e345c362d /generic/tclBinary.c
parentd077fb5a5f2ad30c6467ad7cf4c40a2559cf5f64 (diff)
downloadtcl-fa315dba1db389b3ab991fb90927359a8580ca06.zip
tcl-fa315dba1db389b3ab991fb90927359a8580ca06.tar.gz
tcl-fa315dba1db389b3ab991fb90927359a8580ca06.tar.bz2
Style fixes (unfouling whitespace, sorting comments, removing useless casts, etc.)
FossilOrigin-Name: cd3c38f00ada216d7bc93560d3d70012c2918343
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r--generic/tclBinary.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index 5e86653..6802c10 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.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: tclBinary.c,v 1.52 2008/12/15 17:11:34 ferrieux Exp $
+ * RCS: @(#) $Id: tclBinary.c,v 1.53 2009/01/09 11:21:45 dkf Exp $
*/
#include "tclInt.h"
@@ -597,8 +597,8 @@ TclInitBinaryCmd(
const EnsembleImplMap binaryMap[] = {
{ "format", BinaryFormatCmd, NULL },
{ "scan", BinaryScanCmd, NULL },
- { "encode", NULL, NULL },
- { "decode", NULL, NULL },
+ { "encode", NULL, NULL },
+ { "decode", NULL, NULL },
{ NULL, NULL, NULL }
};
const EnsembleImplMap encodeMap[] = {
@@ -613,7 +613,6 @@ TclInitBinaryCmd(
{ "base64", BinaryDecode64, NULL },
{ NULL, NULL, NULL }
};
-
Tcl_Command binaryEnsemble;
binaryEnsemble = TclMakeEnsemble(interp, "binary", binaryMap);