branch: elpa/magit
commit fb5988d9d65de00a95542b772f36600b9f8e5b85
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-log-matching-{branches,tags}: Cosmetics
---
 lisp/magit-log.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lisp/magit-log.el b/lisp/magit-log.el
index da22fd2f339..9243febdb63 100644
--- a/lisp/magit-log.el
+++ b/lisp/magit-log.el
@@ -742,18 +742,18 @@ completion candidates."
 ;;;###autoload
 (defun magit-log-matching-branches (pattern &optional args files)
   "Show log for all branches matching PATTERN and `HEAD'."
-  (interactive (cons (magit-log-read-pattern "--branches") 
(magit-log-arguments)))
-  (magit-log-setup-buffer
-   (list "HEAD" (format "--branches=%s" pattern))
-   args files))
+  (interactive (cons (magit-log-read-pattern "--branches")
+                     (magit-log-arguments)))
+  (magit-log-setup-buffer (list "HEAD" (format "--branches=%s" pattern))
+                          args files))
 
 ;;;###autoload
 (defun magit-log-matching-tags (pattern &optional args files)
   "Show log for all tags matching PATTERN and `HEAD'."
-  (interactive (cons (magit-log-read-pattern "--tags") (magit-log-arguments)))
-  (magit-log-setup-buffer
-   (list "HEAD" (format "--tags=%s" pattern))
-   args files))
+  (interactive (cons (magit-log-read-pattern "--tags")
+                     (magit-log-arguments)))
+  (magit-log-setup-buffer (list "HEAD" (format "--tags=%s" pattern))
+                          args files))
 
 ;;;###autoload
 (defun magit-log-all-branches (&optional args files)

Reply via email to