Function: erc-channel-user-op-p--inliner

erc-channel-user-op-p--inliner is a function defined in erc.el.gz.

Signature

(erc-channel-user-op-p--inliner INLINE--FORM NICK)

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Closure converted to defun by helpful.
(defun erc-channel-user-op-p--inliner
    (inline--form nick)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp nick)
	 (nick
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "nick")))
	 (body
	  (list 'and nick
		(list 'hash-table-p 'erc-channel-users)
		(list 'let
		      (list
		       (list 'cdata
			     (list 'erc-get-channel-user nick)))
		      (list 'and 'cdata
			    (list 'cdr 'cdata)
			    (list 'erc-channel-user-op
				  (list 'cdr 'cdata)))))))
      (if
	  (eq nick exp)
	  body
	(macroexp-let*
	 (list
	  (list nick exp))
	 body)))))