summaryrefslogtreecommitdiff
path: root/doc/en/weechat_dev.en.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-07-24 08:15:17 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-07-24 08:15:17 +0200
commit50ab62b75d50f28c90d9eea1f786d90aa20cdfe1 (patch)
tree71237d8525602d7c153b94630955edf465594a7e /doc/en/weechat_dev.en.txt
parentea76cdb06ea045dafbe91bfde1669e2287f8e8bd (diff)
downloadweechat-50ab62b75d50f28c90d9eea1f786d90aa20cdfe1.zip
core: fix priority of logical operators in evaluation of expression
The AND ("&&") takes precedence over the OR ("||"). Before the fix: >> 1 || 1 && 0 == [0] After the fix: >> 1 || 1 && 0 == [1] Since the "&&" has higher priority, expression is evaluated as: "1 || (1 && 0)".
Diffstat (limited to 'doc/en/weechat_dev.en.txt')
0 files changed, 0 insertions, 0 deletions