From 401c548dc5f88e5cf38317b1d68ecdaa5b2a300a Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 15 Feb 2009 02:06:53 +0200 Subject: [PATCH] More info for '?'. * magit.el (magit-describe-item): Add magit-section-context-type. --- magit.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/magit.el b/magit.el index d1474ad7..59c72c09 100644 --- a/magit.el +++ b/magit.el @@ -2664,12 +2664,13 @@ Prefix arg means justify as well." (defun magit-describe-item () (interactive) (let ((section (magit-current-section))) - (message "Section: %s %s-%s %S %S" + (message "Section: %s %s-%s %S %S %S" (magit-section-type section) (magit-section-beginning section) (magit-section-end section) (magit-section-title section) - (magit-section-info section)))) + (magit-section-info section) + (magit-section-context-type section)))) (defun magit-copy-item-as-kill () "Copy sha1 of commit at point into kill ring."