From f10fd6ef5b6c3e0423448f1e4e825f7a673785ce Mon Sep 17 00:00:00 2001 From: rubikitch Date: Fri, 23 Jul 2010 06:34:10 +0900 Subject: [PATCH] anything-match-plugin.el (agp-command-line): reformat --- anything-match-plugin.el | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/anything-match-plugin.el b/anything-match-plugin.el index 0a62969..086c88f 100644 --- a/anything-match-plugin.el +++ b/anything-match-plugin.el @@ -429,7 +429,9 @@ If (direct-insert-match) is in the source, this function is used." (with-temp-buffer (if (string= query "") (insert "cat " - (mapconcat (lambda (f) (shell-quote-argument (expand-file-name f))) files " ")) + (mapconcat + (lambda (f) (shell-quote-argument (expand-file-name f))) + files " ")) (loop for (flag . re) in (anything-mp-3-get-patterns-internal query) for i from 0 do @@ -438,8 +440,11 @@ If (direct-insert-match) is in the source, this function is used." (insert "grep -ih " (if (eq flag 'identity) "" "-v ") (shell-quote-argument re)) - (when (zerop i) (insert " " - (mapconcat (lambda (f) (shell-quote-argument (expand-file-name f))) files " "))))) + (when (zerop i) + (insert " " + (mapconcat (lambda (f) (shell-quote-argument + (expand-file-name f))) + files " "))))) (when limit (insert (format " | head -n %d" limit))) (when filter (insert " | " filter)) (buffer-string))) -- 2.11.4.GIT