From d530079be5f9030ca4ff38a326e97a82e1de9e39 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 17 Aug 2008 02:55:41 +0300 Subject: [PATCH] Remove magit-log-commit. --- magit.el | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/magit.el b/magit.el index f282353b..37e75957 100644 --- a/magit.el +++ b/magit.el @@ -839,17 +839,13 @@ pushed. (or commit (error "No commit at point."))))) -(defun magit-revert-commit () - (interactive) - (magit-run "git" "revert" "--no-commit" (magit-commit-at-point))) - (defun magit-apply-commit () (interactive) (magit-run "git" "cherry-pick" "--no-commit" (magit-commit-at-point))) -(defun magit-log-commit () +(defun magit-revert-commit () (interactive) - (magit-browse-log (magit-commit-at-point))) + (magit-run "git" "revert" "--no-commit" (magit-commit-at-point))) (defun magit-show-commit () "Show details of the commit on the current line."