aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-10-17 23:48:13 +0200
committerGravatar Tom Willemsen2012-10-17 23:48:20 +0200
commit86c81c89abdf45a402ad6440cd2d73e1ad22916d (patch)
treeb87b7961102f29dbd6ee4e2e3990b2effb8e91c0
parent944001ce94ed57b3fc84d6f7b2c83bf0c101f3fa (diff)
downloadgitto-86c81c89abdf45a402ad6440cd2d73e1ad22916d.tar.gz
gitto-86c81c89abdf45a402ad6440cd2d73e1ad22916d.zip
Checkdoc-suggested changes
-rw-r--r--emacs/gitto.el8
1 files 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)))