Skip to content

Commit

Permalink
fix issue with error format string not being passed an arg it needs
Browse files Browse the repository at this point in the history
  • Loading branch information
tavisrudd committed Feb 5, 2012
1 parent 5a62785 commit 96a0375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emacs/mu4e.el
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ dir already existed, or has been created, nil otherwise."
(error "Please set %S" var))
(let* ((dir (symbol-value var)) (path (concat mu4e-maildir dir)))
(unless (string= (substring dir 0 1) "/")
(error "%S must start with a '/'"))
(error "%S must start with a '/'" dir))
(unless (mu4e-create-maildir-maybe path)
(error "%s (%S) does not exist" path var)))))

Expand Down

0 comments on commit 96a0375

Please sign in to comment.