[svn-commits] branch murf/bug_6072 - r8290 /team/murf/bug_6072/utils/expr2.testinput

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Jan 19 13:13:54 MST 2006


Author: murf
Date: Thu Jan 19 14:13:52 2006
New Revision: 8290

URL: http://svn.digium.com/view/asterisk?rev=8290&view=rev
Log:
Uh, got confused about ~ vs. ! in the expression syntax. Sorry. Corrected the .fl file, and updated
the test input file.

I was wrong in earlier comments, it wasn't '~' used as a logical NOT unary operator; it was '!'. The '!' operator
is indeed documented in the 1.2 README.variables file! It's not being there was a bug!



Modified:
    team/murf/bug_6072/utils/expr2.testinput

Modified: team/murf/bug_6072/utils/expr2.testinput
URL: http://svn.digium.com/view/asterisk/team/murf/bug_6072/utils/expr2.testinput?rev=8290&r1=8289&r2=8290&view=diff
==============================================================================
--- team/murf/bug_6072/utils/expr2.testinput (original)
+++ team/murf/bug_6072/utils/expr2.testinput Thu Jan 19 14:13:52 2006
@@ -31,10 +31,10 @@
 2 | 0
 2 | 4
 0 | 0
-~0 | 0
-~4 | 0
-4 | ~0
-~4 | ~0
+!0 | 0
+!4 | 0
+4 | !0
+!4 | !0
 3 < 4
 4 < 3
 3 > 4



More information about the svn-commits mailing list