From f1871fbe45b47efc306bfef90d66bccdb585f500 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 5 Apr 2018 07:11:21 +0000 Subject: [PATCH] shortened bitwise-xxxx to bit-xxxx --- lib/prim.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/prim.c b/lib/prim.c index 0c892ed..661353d 100644 --- a/lib/prim.c +++ b/lib/prim.c @@ -657,11 +657,11 @@ static pf_t builtin_prims[] = { 2, 2, pf_number_ne, 2, { '/','=' } }, /* bitwise operations are supported for integers only */ - { 2, 2, pf_integer_band, 11, { 'b','i','t','w','i','s','e','-','a','n','d' } }, - { 2, 2, pf_integer_bor, 10, { 'b','i','t','w','i','s','e','-','o','r' } }, - { 2, 2, pf_integer_bxor, 11, { 'b','i','t','w','i','s','e','-','x','o','r' } }, - { 1, 1, pf_integer_bnot, 11, { 'b','i','t','w','i','s','e','-','n','o','t' } }, - { 2, 2, pf_integer_bshift, 13, { 'b','i','t','w','i','s','e','-','s','h','i','f','t' } }, + { 2, 2, pf_integer_band, 7, { 'b','i','t','-','a','n','d' } }, + { 2, 2, pf_integer_bor, 6, { 'b','i','t','-','o','r' } }, + { 2, 2, pf_integer_bxor, 7, { 'b','i','t','-','x','o','r' } }, + { 1, 1, pf_integer_bnot, 7, { 'b','i','t','-','n','o','t' } }, + { 2, 2, pf_integer_bshift, 9, { 'b','i','t','-','s','h','i','f','t' } }, };