Function: process-mark
process-mark is a function defined in process.c.
Signature
(process-mark PROCESS)
Documentation
Return the marker for the end of the last output from PROCESS.
Probably introduced at or before Emacs version 1.6.
Source Code
// Defined in /usr/src/emacs/src/process.c
{
CHECK_PROCESS (process);
return XPROCESS (process)->mark;
}