From 4b23df61f56e44576ef2a3c12e8ee0440160b6da Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Tue, 1 Jun 2010 16:46:53 +0100 Subject: [PATCH] Added a little documentation to the log functions. --- magit.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/magit.el b/magit.el index cc1f2532..95e24b44 100644 --- a/magit.el +++ b/magit.el @@ -3545,14 +3545,18 @@ With a non numeric prefix ARG, show all entries" (magit-log-mode t))) (defun magit-log-all (&optional arg) + "Display the state of all refs in the log output." (interactive "P") (magit-display-log arg "--all")) (defun magit-log-first-parent (&optional arg) + "Display the log buffer excluding anything more than first +level commits." (interactive "P") (magit-display-log arg "--first-parent")) (defun magit-log (&optional arg) + "View and act upon the output of git log." (interactive "P") (magit-display-log arg))