Function: vc-delistify

vc-delistify is a byte-compiled function defined in vc-dispatcher.el.gz.

Signature

(vc-delistify FILELIST)

Documentation

Smash a FILELIST into a file list string suitable for info messages.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dispatcher.el.gz
(defun vc-delistify (filelist)
  "Smash a FILELIST into a file list string suitable for info messages."
  ;; FIXME what about file names with spaces?
  (if (not filelist) "."  (mapconcat #'identity filelist " ")))