# HG changeset patch # User Karl Heuer # Date 837638004 0 # Node ID fb60ef923bb579e7c445810cef334f07618454cd # Parent 6c36570192864127dae32dbe0d9fb486e87fd8ba (vip-get-filenames-from-buffer): Add &optional. diff -r 6c3657019286 -r fb60ef923bb5 lisp/emulation/viper-util.el --- a/lisp/emulation/viper-util.el Wed Jul 17 21:09:42 1996 +0000 +++ b/lisp/emulation/viper-util.el Wed Jul 17 21:13:24 1996 +0000 @@ -478,7 +478,7 @@ ;; return a list of file names listed in the buffer beginning at point ;; If optional arg is supplied, assume each filename is listed on a separate ;; line -(defun vip-get-filenames-from-buffer (one-per-line) +(defun vip-get-filenames-from-buffer (&optional one-per-line) (let ((skip-chars (if one-per-line "\t\n" " \t\n")) result fname delim) (skip-chars-forward skip-chars)