diff options
| author | djcb <djcb@djcbsoftware.nl> | 2013-06-08 17:36:29 +0300 |
|---|---|---|
| committer | djcb <djcb@djcbsoftware.nl> | 2013-06-08 17:36:29 +0300 |
| commit | 03a79fc1889a58a7f62a500880f32481a6723a00 (patch) | |
| tree | b843134248a3ebb4132d845e5c672fbbceebd164 | |
| parent | 3d385325eaab844e085978683aa054ea0af67f6e (diff) | |
* mu4e: fix typo
| -rw-r--r-- | mu4e/mu4e-view.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 48369de..2f6e6a3 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -781,10 +781,10 @@ Also number them so they can be opened using `mu4e-view-go-to-url'." (defmacro mu4e~view-in-headers-context (&rest body) - "Evaluate BODY in the current headers buffer, with moved to the -current message." + "Evaluate BODY in the context of the headers buffer connected to +this view." `(progn - (unless '(buffer-live-p mu4e~view-headers-buffer) + (unless (buffer-live-p mu4e~view-headers-buffer) (mu4e-error "no headers-buffer connected")) (let* ((msg (mu4e-message-at-point)) (docid (mu4e-message-field msg :docid))) |
