Function: comint-set-process-mark

comint-set-process-mark is an interactive and byte-compiled function defined in comint.el.gz.

Signature

(comint-set-process-mark)

Documentation

Set the process mark at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-set-process-mark ()
  "Set the process mark at point."
  (interactive)
  (let ((proc (or (get-buffer-process (current-buffer))
		  (user-error "Current buffer has no process"))))
    (set-marker (process-mark proc) (point))
    (message "Process mark set")))