Function: gnus-shell-command-to-string

gnus-shell-command-to-string is a byte-compiled function defined in gnus-fun.el.gz.

Signature

(gnus-shell-command-to-string COMMAND)

Documentation

Like shell-command-to-string except not mingling ERROR.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-fun.el.gz
(defun gnus-shell-command-to-string (command)
  "Like `shell-command-to-string' except not mingling ERROR."
  (with-output-to-string
    (call-process shell-file-name nil (list standard-output nil)
		  nil shell-command-switch command)))