]> git.eshelyaron.com Git - emacs.git/commitdiff
(ccl_driver): Delete stray semicolon.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 5 Jun 2007 00:26:01 +0000 (00:26 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 5 Jun 2007 00:26:01 +0000 (00:26 +0000)
src/ccl.c

index ded74fb6296905b8edaa275f0f9b75f8667200d0..ee0250f6c2c814259202c3771e9e3054f3b4d294 100644 (file)
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -1261,7 +1261,7 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed)
            case CCL_MOD: reg[rrr] = i % j; break;
            case CCL_AND: reg[rrr] = i & j; break;
            case CCL_OR: reg[rrr] = i | j; break;
-           case CCL_XOR: reg[rrr] = i ^ j;; break;
+           case CCL_XOR: reg[rrr] = i ^ j; break;
            case CCL_LSH: reg[rrr] = i << j; break;
            case CCL_RSH: reg[rrr] = i >> j; break;
            case CCL_LSH8: reg[rrr] = (i << 8) | j; break;