Mercurial > hg > index.cgi
comparison lwlib/lw_expr.c @ 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 | 19ca3108a223 |
children | 348e2816ce32 |
comparison
equal
deleted
inserted
replaced
124:169018bd9ada | 125:db5690682eb7 |
---|---|
1179 { lw_expr_oper_and, "&&", 25 }, | 1179 { lw_expr_oper_and, "&&", 25 }, |
1180 { lw_expr_oper_or, "||", 25 }, | 1180 { lw_expr_oper_or, "||", 25 }, |
1181 | 1181 |
1182 { lw_expr_oper_bwand, "&", 50 }, | 1182 { lw_expr_oper_bwand, "&", 50 }, |
1183 { lw_expr_oper_bwor, "|", 50 }, | 1183 { lw_expr_oper_bwor, "|", 50 }, |
1184 { lw_expr_oper_bwor, "!", 50 }, | |
1184 { lw_expr_oper_bwxor, "^", 50 }, | 1185 { lw_expr_oper_bwxor, "^", 50 }, |
1185 | 1186 |
1186 { lw_expr_oper_none, "", 0 } | 1187 { lw_expr_oper_none, "", 0 } |
1187 }; | 1188 }; |
1188 | 1189 |