diff options
| author | Jeremy Sowden <jeremy@azazel.net> | 2025-03-10 21:42:06 +0000 |
|---|---|---|
| committer | Jeremy Sowden <jeremy@azazel.net> | 2025-03-10 21:44:28 +0000 |
| commit | 3dd922ff6ca10dcc9ff2cd12f57b1134f89c4ff3 (patch) | |
| tree | edc7a15c4091b6dca44f18dec296d3883761e6bf /man | |
| parent | 9364d25af7d8f8d00e077a29310b047b8c4b4336 (diff) | |
man: escape a couple of back-slashes
Otherwise:
(with the \040 specifying a space in the regular expression, and and extra '\' to escape it)
is rendered as:
(with the $ 40 specifying a space in the regular expression, and and extra `$ยด to escape it)
Fixes: 5e2b7d52b24d ("mu-query.7: update documentation")
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Diffstat (limited to 'man')
| -rw-r--r-- | man/mu-query.7.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/mu-query.7.org b/man/mu-query.7.org index d9c380e..a561793 100644 --- a/man/mu-query.7.org +++ b/man/mu-query.7.org @@ -165,7 +165,7 @@ whitespace, so the search for a message with subject "hello world", you can writ #+begin_example mu find 'subject:/hello\\040world/' #+end_example -(with the \040 specifying a space in the regular expression, and and extra `\' +(with the \\040 specifying a space in the regular expression, and and extra `\\' to escape it). In many cases, #+begin_example mu find 'subject:/hello.world/' |
