Function: erc--strpos

erc--strpos is a byte-compiled function defined in erc-common.el.gz.

Signature

(erc--strpos CHAR STRING)

Documentation

Return position of CHAR in STRING or nil if not found.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(define-inline erc--strpos (char string)
  "Return position of CHAR in STRING or nil if not found."
  (inline-quote (string-search (string ,char) ,string)))