From 89eb9ee2d0f1476f0a541f4734e7f6f7e0c827a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 8 Dec 2015 20:20:37 +0100 Subject: [PATCH] mu4e-mark: Make indentation in mu4e-mark-at-point consistent I don't care for this mixing of tabs and spaces, but this at least makes it consistent with the rest of the function. --- mu4e/mu4e-mark.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-mark.el b/mu4e/mu4e-mark.el index 0b21ef09..f32030e8 100644 --- a/mu4e/mu4e-mark.el +++ b/mu4e/mu4e-mark.el @@ -236,8 +236,8 @@ The following marks are available, and the corresponding props: ;; info for the user. (markdesc (cdr (or (assq mark mu4e-marks) (mu4e-error "Invalid mark %S" mark)))) (markkar (plist-get markdesc :char)) - (target (mu4e~mark-get-dyn-target mark target)) - (show-fct (plist-get markdesc :show-target)) + (target (mu4e~mark-get-dyn-target mark target)) + (show-fct (plist-get markdesc :show-target)) (shown-target (if show-fct (funcall show-fct target) (if target (format "%S" target)))))