From 07dbd674950cb8933f0cd71431bb03035db6f0f3 Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Sun, 11 Jul 2010 18:53:49 +0100 Subject: [PATCH] Removed wanderlust again. --- magit-wanderlust.el | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 magit-wanderlust.el diff --git a/magit-wanderlust.el b/magit-wanderlust.el deleted file mode 100644 index bf140448..00000000 --- a/magit-wanderlust.el +++ /dev/null @@ -1,18 +0,0 @@ -;;; magit-wanderlust.el --- wanderlust extension for Magit - -(require 'magit) - -(defun magit-wl-pipe-to-am () - "Ask the user for a project in which to apply (via am) the -current email in wl." - (interactive) - "Pipe a wanderlust message into git am." - (let* ((proj (funcall magit-completing-read - "Apply to project: " - (magit-list-projects) - nil t nil nil))) - (wl-summary-pipe-message-subr - nil (format "cd '%s' && git am" proj)))) - -(provide 'magit-wanderlust) -;;; magit-wanderlust.el ends here