summaryrefslogtreecommitdiffstats
path: root/git-difme.scm
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2016-07-10 19:24:16 +0000
committerrsiddharth <s@ricketyspace.net>2016-07-10 19:24:16 +0000
commite285c0aecfad93907fa209a8b94043779621a1a3 (patch)
treee7bbdb44b61b0a5f1d2ab3700641b0f25e0edc87 /git-difme.scm
parent05ff57af8de6588f87fd268c62033e3b79ee8f26 (diff)
modify difme-commit.
* git-difme (difme-commit): modify `msg`; "files" to file(s).
Diffstat (limited to 'git-difme.scm')
-rw-r--r--git-difme.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-difme.scm b/git-difme.scm
index 74e66cb..a20d855 100644
--- a/git-difme.scm
+++ b/git-difme.scm
@@ -101,12 +101,12 @@ the commit message will be in the following format:
MSG
- files:
+ file(s):
- foo.org
- bar.scm
- frob.el"
(let* ((msg (string-append
- msg "\n\nfiles:\n - "
+ msg "\n\nfile(s):\n - "
(string-join (staged-files repo) "\n - ")))
(cmd (string-append "git commit -m '" msg "'")))
(with-directory-excursion repo