diff options
Diffstat (limited to 'lisp/org/org-attach.el')
-rw-r--r-- | lisp/org/org-attach.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/org-attach.el b/lisp/org/org-attach.el index c9679edc65a..ae97db20f70 100644 --- a/lisp/org/org-attach.el +++ b/lisp/org/org-attach.el @@ -246,10 +246,10 @@ This checks for the existence of a \".git\" directory in that directory." (cd dir) (shell-command "git add .") (shell-command "git ls-files --deleted" t) - (mapc '(lambda (file) - (unless (string= file "") - (shell-command - (concat "git rm \"" file "\"")))) + (mapc (lambda (file) + (unless (string= file "") + (shell-command + (concat "git rm \"" file "\"")))) (split-string (buffer-string) "\n")) (shell-command "git commit -m 'Synchronized attachments'"))))) |