diff options
| author | Tomi Ollila <tomi.ollila@iki.fi> | 2012-02-09 12:10:25 +0200 |
|---|---|---|
| committer | Tomi Ollila <tomi.ollila@iki.fi> | 2012-02-09 12:10:25 +0200 |
| commit | dab08fc6c8d7fba39d260dc0685a3c348a7a7d58 (patch) | |
| tree | f529ef4ceabc917b5ee8db1539fe16e87c4a3cb3 | |
| parent | 74f16e1a2b7792bf42f2a28b33423a1db1764658 (diff) | |
closing parenthesis fix
| -rw-r--r-- | emacstips.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn index f168647..183fef8 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -194,8 +194,8 @@ And version for notmuch 0.12 (not released yet) "toggle deleted tag for message" (interactive) (notmuch-show-tag-message - (if (member "deleted" (notmuch-show-get-tags) - "+deleted" "-deleted"))))) + (if (member "deleted" (notmuch-show-get-tags)) + "+deleted" "-deleted")))) ## Restore reply-to-all key binding to 'r' |
