branch: externals/vdiff commit 1e6e39310479ba4fed69019ab933e9a01b212060 Author: wwade <ww...@users.noreply.github.com> Commit: wwade <ww...@users.noreply.github.com>
fix docstring for vdiff--maybe-list --- vdiff.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdiff.el b/vdiff.el index f80ec82d7e..33055eea2f 100644 --- a/vdiff.el +++ b/vdiff.el @@ -297,7 +297,7 @@ because those are handled differently.") (delq nil (apply #'list args))) (defun vdiff--maybe-list (str) - "Return a list with STR as the sole element, or an empty list." + "Return a list with STR as the sole element, or an empty list if STR is empty." (if (string= str "") '() (list str))) (defun vdiff--buffer-a-p ()