diff options
author | yoctocell <public@yoctocell.xyz> | 2021-01-04 11:52:01 +0100 |
---|---|---|
committer | yoctocell <public@yoctocell.xyz> | 2021-01-04 11:52:01 +0100 |
commit | 4c1e24390fd260e8ba1f13faa0b67c42195e1747 (patch) | |
tree | 9e43ec5cd93725c8ab02f3d207a6561ceb901f72 /git-email.el | |
parent | 7d9b53a6be90222b7b36e6bafac112a030c6dcc5 (diff) |
Tweak wording in docstrings
* git-email.el (git-email--dired):
(git-email--vc-dir):
(git-email--get-filenames):
Diffstat (limited to 'git-email.el')
-rw-r--r-- | git-email.el | 6 |
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)) |