From 0f5bf1dbb961f7ca39e130f30891a566e4dfed09 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Wed, 2 Nov 2022 00:46:02 +0200 Subject: [PATCH] vc-svn-ignore-completion-table: Ignore empty lines * lisp/vc/vc-svn.el (vc-svn-ignore-completion-table): Make sure to ignore empty lines (bug#58889). --- lisp/vc/vc-svn.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index 9c2bdf66746..b9ea8f15788 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el @@ -364,7 +364,7 @@ DIRECTORY or absolute." (with-temp-buffer (when (zerop (vc-svn-command t t nil "propget" "svn:ignore" (expand-file-name directory))) - (split-string (buffer-string) "\n")))) + (split-string (buffer-string) "\n" t)))) (defun vc-svn-find-admin-dir (file) "Return the administrative directory of FILE." -- 2.39.2