aboutsummaryrefslogtreecommitdiff
path: root/git-email.el
diff options
context:
space:
mode:
Diffstat (limited to 'git-email.el')
-rw-r--r--git-email.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-email.el b/git-email.el
index 716c37d..067a10a 100644
--- a/git-email.el
+++ b/git-email.el
@@ -109,7 +109,7 @@ If the header is not found, return an empty string."
(point-max))))
(defun git-email--dired ()
- "Return filenames for marked files in `dired'.
+ "Return list of filenames for marked files in `dired'.
If no marks are found, return the filename at point."
(delq nil
(mapcar
@@ -117,7 +117,7 @@ If no marks are found, return the filename at point."
(dired-map-over-marks (dired-get-filename) nil))))
(defun git-email--vc-dir ()
- "Return filenames for marked files in `vc-dir'.
+ "Return list of filenames for marked files in `vc-dir'.
If no marks are found, return the filename at point."
(let* ((marked-files (vc-dir-marked-files))
(files (if marked-files
@@ -126,7 +126,7 @@ If no marks are found, return the filename at point."
files))
(defun git-email--get-filenames ()
- "Return filenames for marked files in `vc-dir'.
+ "Return list of filenames for marked files in `vc-dir'.
If no marks are found, return the filename at point."
(cond ((eq major-mode 'dired-mode)
(git-email--dired))