summaryrefslogtreecommitdiff
path: root/doc/README.variables
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-06-24 02:51:47 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-06-24 02:51:47 +0000
commitd8cea2c8d4f54b91deb0c4e0b2f82c8fb2853c9b (patch)
tree72ed70e65dd669830763c64337b76850404fc7eb /doc/README.variables
parent9f4ad3363d6989a4be25e68b8c218cb0866c8646 (diff)
add conditional operator to expression parser, and various cleanups (bug #4459)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5997 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'doc/README.variables')
-rwxr-xr-xdoc/README.variables6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/README.variables b/doc/README.variables
index bca086117..e072dc8be 100755
--- a/doc/README.variables
+++ b/doc/README.variables
@@ -518,6 +518,12 @@ of possible concern with "legacy" extension.conf files:
** match anywhere in the string. The only diff with the ':' is that
** match doesn't have to be anchored to the beginning of the string.
+**9. Added the conditional operator 'expr1 ? true_expr :: false_expr'
+** First, all 3 exprs are evaluated, and if expr1 is false, the 'false_expr'
+** is returned as the result. See above for details.
+
+**10. Unary operators '-' and '!' were made right associative.
+
--------------------------------------------------------
DEBUGGING HINTS FOR $[ ] EXPRESSIONS
--------------------------------------------------------