summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2007-10-20 02:15:05 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2007-10-20 02:15:05 (GMT)
commit84e2319fb5c3966eb989c2c6870f3b6b03b3b9c9 (patch)
treec7f7b91f7b5b107f24b23b402c22fe4ee8b6300e /generic/tclCompile.c
parenta1fe345fbfa47cb85f28246a1569fce99cd93712 (diff)
downloadtcl-84e2319fb5c3966eb989c2c6870f3b6b03b3b9c9.zip
tcl-84e2319fb5c3966eb989c2c6870f3b6b03b3b9c9.tar.gz
tcl-84e2319fb5c3966eb989c2c6870f3b6b03b3b9c9.tar.bz2
* generic/tclCompile.c: Fix comments.
* generic/tclExecute.c:
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 9ea7d2d..dab1b22 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.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: tclCompile.c,v 1.135 2007/10/09 22:16:23 dkf Exp $
+ * RCS: @(#) $Id: tclCompile.c,v 1.136 2007/10/20 02:15:05 msofer Exp $
*/
#include "tclInt.h"
@@ -158,9 +158,9 @@ InstructionDesc tclInstructionTable[] = {
{"gt", 1, -1, 0, {OPERAND_NONE}},
/* Greater: push (stknext || stktop) */
{"le", 1, -1, 0, {OPERAND_NONE}},
- /* Logical or: push (stknext || stktop) */
+ /* Less or equal: push (stknext || stktop) */
{"ge", 1, -1, 0, {OPERAND_NONE}},
- /* Logical or: push (stknext || stktop) */
+ /* Greater or equal: push (stknext || stktop) */
{"lshift", 1, -1, 0, {OPERAND_NONE}},
/* Left shift: push (stknext << stktop) */
{"rshift", 1, -1, 0, {OPERAND_NONE}},