Function: image-crop--process

image-crop--process is a byte-compiled function defined in image-crop.el.gz.

Signature

(image-crop--process COMMAND EXPANSIONS)

Documentation

Use call-process-region with COMMAND expanded with EXPANSIONS.

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-crop.el.gz
(defun image-crop--process (command expansions)
  "Use `call-process-region' with COMMAND expanded with EXPANSIONS."
  (apply
   #'call-process-region (point-min) (point-max)
   (format-spec (car command) expansions)
   t (list (current-buffer) nil) nil
   (mapcar (lambda (elem)
             (format-spec elem expansions))
           (cdr command))))