Function: filesets-cmd-get-args

filesets-cmd-get-args is a byte-compiled function defined in filesets.el.gz.

Signature

(filesets-cmd-get-args CMD-NAME)

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-cmd-get-args (cmd-name)
  (mapcan (lambda (this)
	    (cond
	     ((and (symbolp this) (fboundp this))
	      (let ((x (funcall this)))
                (if (listp x) x (list x))))
	     (t
	      (list this))))
	  (let ((def (filesets-cmd-get-def cmd-name)))
	    (nth 2 def))))