[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 0f5bf1dbb9: vc-svn-ignore-completion-table: Ignore empty lines
From: |
Dmitry Gutov |
Subject: |
master 0f5bf1dbb9: vc-svn-ignore-completion-table: Ignore empty lines |
Date: |
Tue, 1 Nov 2022 18:47:16 -0400 (EDT) |
branch: master
commit 0f5bf1dbb961f7ca39e130f30891a566e4dfed09
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>
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 9c2bdf6674..b9ea8f1578 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."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 0f5bf1dbb9: vc-svn-ignore-completion-table: Ignore empty lines,
Dmitry Gutov <=