Function: filesets-cmd-show-result

filesets-cmd-show-result is a byte-compiled function defined in filesets.el.gz.

Signature

(filesets-cmd-show-result CMD OUTPUT)

Documentation

Show OUTPUT of CMD (a shell command).

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-cmd-show-result (cmd output)
  "Show OUTPUT of CMD (a shell command)."
  (pop-to-buffer "*Filesets: Shell Command Output*")
  (with-no-warnings
   (end-of-buffer))
  (insert "*** ")
  (insert cmd)
  (newline)
  (insert output)
  (newline))