branch: elpa/magit commit 86f5574d5a2cfacea7565119fa024037a13c50f3 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Add missing library commentaries --- lisp/magit-autorevert.el | 7 +++++++ lisp/magit-bundle.el | 7 +++++++ lisp/magit-submodule.el | 6 ++++++ lisp/magit-subtree.el | 7 +++++++ 4 files changed, 27 insertions(+) diff --git a/lisp/magit-autorevert.el b/lisp/magit-autorevert.el index 5ddcd387bc..3579bf2ead 100644 --- a/lisp/magit-autorevert.el +++ b/lisp/magit-autorevert.el @@ -20,6 +20,13 @@ ;; You should have received a copy of the GNU General Public License ;; along with Magit. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; This library implements support for automatically reverting buffers +;; when visited files in the repository change. + +;; See (info "(magit)Automatic Reverting of File-Visiting Buffers"). + ;;; Code: (require 'magit-process) diff --git a/lisp/magit-bundle.el b/lisp/magit-bundle.el index 705181ceee..1cd98d5519 100644 --- a/lisp/magit-bundle.el +++ b/lisp/magit-bundle.el @@ -20,6 +20,13 @@ ;; You should have received a copy of the GNU General Public License ;; along with Magit. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; This library implements support for "git bundle". +;; The entry point is the `magit-bundle' menu command. + +;; See (man "git-bundle"). + ;;; Code: (require 'magit) diff --git a/lisp/magit-submodule.el b/lisp/magit-submodule.el index b6129b1df7..a342e9ab76 100644 --- a/lisp/magit-submodule.el +++ b/lisp/magit-submodule.el @@ -20,6 +20,12 @@ ;; You should have received a copy of the GNU General Public License ;; along with Magit. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; This library implements support for "git submodule". + +;; See (info "(magit)Submodules"). + ;;; Code: (require 'magit) diff --git a/lisp/magit-subtree.el b/lisp/magit-subtree.el index 3db80fe9b4..4bd1ed1aa7 100644 --- a/lisp/magit-subtree.el +++ b/lisp/magit-subtree.el @@ -20,6 +20,13 @@ ;; You should have received a copy of the GNU General Public License ;; along with Magit. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; This library implements support for "git subtree". +;; The entry point is the `magit-subtree' menu command. + +;; See (info "(magit)Subtree"). + ;;; Code: (require 'magit)