aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-16 15:07:15 +0000
committerpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-16 15:07:15 +0000
commit1ed14e26cfdab474d28d177db9ab762a4ecf07e6 (patch)
treecbdc32d77210322349624443aaf09c2cec23074d /doc
parent1662d4f5299a45f6e8e1025947c7039dafcd7622 (diff)
Merged revisions 270801 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r270801 | pabelanger | 2010-06-16 11:05:11 -0400 (Wed, 16 Jun 2010) | 9 lines Update formatting for channelvariables.tex (closes issue #17511) Reported by: klaus3000 Patches: channelvariables.tex-patch.txt uploaded by klaus3000 (license 65) Tested by: pabelanger ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@270802 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/tex/channelvariables.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tex/channelvariables.tex b/doc/tex/channelvariables.tex
index 90eba9747..31e5a83ca 100644
--- a/doc/tex/channelvariables.tex
+++ b/doc/tex/channelvariables.tex
@@ -288,7 +288,7 @@ with equal precedence are grouped within \{ \} symbols.
Exactly the same as the ':' operator, except that the match is
not anchored to the beginning of the string. Pardon any similarity
to seemingly similar operators in other programming languages!
- The ":" and "=\~" operators share the same precedence.
+ The ":" and "=\verb!~!" operators share the same precedence.
\item \verb!expr1 ? expr2 :: expr3!
@@ -649,11 +649,11 @@ of possible concern with "legacy" extension.conf files:
Basically, if the string or number is null, empty, or '0',
a '1' is returned. Otherwise a '0' is returned.
-\item Added the '=~' operator, just in case someone is just looking for
+\item Added the '=\verb!~!' operator, just in case someone is just looking for
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.
-\item Added the conditional operator 'expr1 ? true\_expr : false\_expr'
+\item 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.