]> code.delx.au - gnu-emacs/blobdiff - lisp/org/org-attach.el
Don't quote lambda expressions with `quote'.
[gnu-emacs] / lisp / org / org-attach.el
index c9679edc65ac576a920225d5f825c11f68c70181..ae97db20f70bc1e7e191baee44f68c4abf93e33b 100644 (file)
@@ -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'")))))