changeset 125:db5690682eb7

Added ! as a synomym for bitwise or (|)
author William Astle <lost@l-w.ca>
date Thu, 11 Aug 2011 20:33:20 -0600
parents 169018bd9ada
children 2eda3e39b3b8
files lwlib/lw_expr.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lwlib/lw_expr.c	Wed Aug 10 19:16:23 2011 -0600
+++ b/lwlib/lw_expr.c	Thu Aug 11 20:33:20 2011 -0600
@@ -1181,6 +1181,7 @@
 		
 		{ lw_expr_oper_bwand, "&", 50 },
 		{ lw_expr_oper_bwor, "|", 50 },
+		{ lw_expr_oper_bwor, "!", 50 },
 		{ lw_expr_oper_bwxor, "^", 50 },
 		
 		{ lw_expr_oper_none, "", 0 }