Function: erc--assert-input-bounds--inliner
erc--assert-input-bounds--inliner is a function defined in erc.el.gz.
Signature
(erc--assert-input-bounds--inliner INLINE--FORM)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form)
((ignore inline--form)
(catch 'inline--just-use
(list 'progn
(list 'when
(list 'and (list 'processp 'erc-server-process)
(list 'eq (list 'current-buffer)
(list 'process-buffer 'erc-server-process)))
(list 'set-marker
(list 'process-mark 'erc-server-process)
'erc-insert-marker))
(list 'cl-assert
(list '< 'erc-insert-marker 'erc-input-marker))
(list 'cl-assert
(list '= (list 'field-end 'erc-insert-marker)
'erc-input-marker)))))
(t)]