summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-07-15 15:37:26 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:28 -0400
commit22c69707ce058aa3b558acd61ac7679004ad9612 (patch)
treefa3295c3b97749c3d9ce1d5b6a2815fcadce0e1f /lisc
parent7e53000a1fce22a89bdaa8b44df9ea23a4b8ce3e (diff)
downloadroux-22c69707ce058aa3b558acd61ac7679004ad9612.tar.gz
cosmetics
Diffstat (limited to 'lisc')
-rw-r--r--lisc/lisc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index e3ea528..2f6ada4 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -39,11 +39,11 @@ req(Ref a, Ref b)
 enum {
 	RSym = 0,
 	RConst = 1,
-	NRef = ((ushort)-1)>>1,
+	NRef = (1<<15) - 1
 };
 
-#define SYM(x)   (Ref){ RSym, x }
-#define CONST(x) (Ref){ RConst, x }
+#define SYM(x)   (Ref){RSym, x}
+#define CONST(x) (Ref){RConst, x}
 
 enum {
 	OXXX,