Function: comint-redirect-results-list

comint-redirect-results-list is an autoloaded and byte-compiled function defined in comint.el.gz.

Signature

(comint-redirect-results-list COMMAND REGEXP REGEXP-GROUP)

Documentation

Send COMMAND to current process.

Return a list of expressions in the output which match REGEXP. REGEXP-GROUP is the regular expression group in REGEXP to use.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
;;;###autoload
(defun comint-redirect-results-list (command regexp regexp-group)
  "Send COMMAND to current process.
Return a list of expressions in the output which match REGEXP.
REGEXP-GROUP is the regular expression group in REGEXP to use."
  (comint-redirect-results-list-from-process
   (get-buffer-process (current-buffer))
   command regexp regexp-group))