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.
This commit is contained in:
Ævar Arnfjörð Bjarmason 2015-12-08 20:20:37 +01:00
parent 899253359b
commit 89eb9ee2d0
1 changed files with 2 additions and 2 deletions

View File

@ -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)))))