From 4c1e24390fd260e8ba1f13faa0b67c42195e1747 Mon Sep 17 00:00:00 2001 From: yoctocell Date: Mon, 4 Jan 2021 11:52:01 +0100 Subject: Tweak wording in docstrings * git-email.el (git-email--dired): (git-email--vc-dir): (git-email--get-filenames): --- git-email.el | 6 +++--- 1 file 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)) -- cgit v1.2.3