From 86c81c89abdf45a402ad6440cd2d73e1ad22916d Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Wed, 17 Oct 2012 23:48:13 +0200 Subject: Checkdoc-suggested changes --- emacs/gitto.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/gitto.el b/emacs/gitto.el index cddb2ac..9f89970 100644 --- a/emacs/gitto.el +++ b/emacs/gitto.el @@ -21,10 +21,10 @@ ;;; Commentary: -;; Small interface between gitto and emacs. +;; Small interface between gitto and Emacs. ;; Right now it only offers the `gitto-register' command which lets -;; you register repositories from within emacs. When called +;; you register repositories from within Emacs. When called ;; interactively this command will try to register the git directory ;; of the file of the current buffer. @@ -51,7 +51,7 @@ "Register DIR with gitto." (interactive (list (locate-dominating-file (buffer-file-name) ".git"))) (unless dir - (error "Not a git repository.")) + (error "Not a git repository")) (shell-command (concat gitto-program " -r " dir))) @@ -60,7 +60,7 @@ "Unregister DIR with gitto." (interactive (list (locate-dominating-file (buffer-file-name) ".git"))) (unless (and dir (gitto-registered-p dir)) - (error "Not a registered git repository.")) + (error "Not a registered git repository")) (shell-command (concat gitto-program " -R " dir))) -- cgit v1.2.3-54-g00ecf