Function: vc-svn-ignore-completion-table
vc-svn-ignore-completion-table is a byte-compiled function defined in
vc-svn.el.gz.
Signature
(vc-svn-ignore-completion-table DIRECTORY)
Documentation
Return the list of ignored files in DIRECTORY.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defun vc-svn-ignore-completion-table (directory)
"Return the list of ignored files in DIRECTORY."
(with-temp-buffer
(when (zerop (vc-svn-command
t t nil "propget" "svn:ignore" (expand-file-name directory)))
(split-string (buffer-string) "\n"))))