about summary refs log tree commit diff
path: root/man
diff options
context:
space:
mode:
authorDuncaen <mail@duncano.de>2019-01-28 11:12:18 +0100
committerLeah Neukirchen <chneukirchen@gmail.com>2020-05-15 18:41:13 +0200
commit8f0b6e2117cd2f3f81ca8572dea4f243ce831610 (patch)
tree4634edf66d81dd307d6e050a6ea9697eee8812c9 /man
parent3968f2ef03290de2bd77ba5f63470fc1e0d133e1 (diff)
downloadmblaze-8f0b6e2117cd2f3f81ca8572dea4f243ce831610.tar.gz
mblaze-8f0b6e2117cd2f3f81ca8572dea4f243ce831610.tar.xz
mblaze-8f0b6e2117cd2f3f81ca8572dea4f243ce831610.zip
mpick: add ternary (conditional) operator
Diffstat (limited to 'man')
-rw-r--r--man/mpick.13
1 files changed, 2 insertions, 1 deletions
diff --git a/man/mpick.1 b/man/mpick.1
index 64a63d1..744fa24 100644
--- a/man/mpick.1
+++ b/man/mpick.1
@@ -92,7 +92,8 @@ Unread messages.
 .Nm
 tests are given by the following EBNF:
 .Bd -literal
-<expr>     ::= <expr> || <expr>  -- disjunction
+<expr>     ::= <expr> ? <expr> : <expr>  -- ternary operator
+             | <expr> || <expr>  -- disjunction
              | <expr> && <expr>  -- conjunction
              | ! <expr>          -- negation
              | ( <expr> )