summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@debian.org>2016-04-11 19:38:15 -0400
committerAntoine Beaupré <anarcat@debian.org>2016-04-11 19:38:15 -0400
commitb989c29efb33a1f4db6322f7b50a9dc919cd1699 (patch)
tree0dbceaa4a0d3f9b06a7806fe623ea1379213e9ca
parentd8bb8bb5af6c1ecabf3fc3b702c4491fea31f4bf (diff)
quote properly
one of the very few cases where we want $* instead of $@
-rw-r--r--emacstips.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 2ce59e7..11495b2 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -335,7 +335,7 @@ If you are not yet running 0.22, you can still use it by adding a
wrapper around the command called, say, `notmuch-address`:
#!/bin/sh
- exec notmuch address from:"$@"
+ exec notmuch address from:"$*"
Then you can set the `notmuch-address-command` to `notmuch-address`
(if it is in your `$PATH` of course, otherwise use an absolute path).