diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2010-01-17 07:51:09 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2010-01-17 07:51:09 -0800 |
commit | 50745db41b43160eed7bcfc21f0c7dc42dd58a07 (patch) | |
tree | c816d8b6fbcd751f9d92f372adf8ece54dbbc88d /txr.1 | |
parent | 4e02ef614f9fd4930aab031cf8512c8607c0d2e9 (diff) | |
download | txr-50745db41b43160eed7bcfc21f0c7dc42dd58a07.tar.gz txr-50745db41b43160eed7bcfc21f0c7dc42dd58a07.tar.bz2 txr-50745db41b43160eed7bcfc21f0c7dc42dd58a07.zip |
Fix bizarre edit mistake.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -730,9 +730,9 @@ precedence to these operators. The, % operator has a special syntactic behavior: with respect to its left operand, it has a similar precedence to the ?, + and * operators. -However, it has a lower Prudence. The expression abc*%d*ef means -ab((c*)%(d*ef)). The left argument of % is c*, but the right is -the entire expression d*ef. +However, it has a lower precedence facing right. The expression abc*%d*ef +means ab((c*)%(d*ef)). The left argument of % is c*, but the right is the +entire expression d*ef. The unary complement operator has the next lower precedence, so that ~A* means the ~(A*): "match the all text that is not matched by zero |