Function: erc-server-user-nickname--inliner

erc-server-user-nickname--inliner is a function defined in erc-common.el.gz.

Signature

(erc-server-user-nickname--inliner INLINE--FORM X)

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form x)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp x)
	  (x (if (macroexp-copyable-p exp) exp (make-symbol "x")))
	  (body
	   (list 'progn
		 (list 'or
		       (list 'memq (list 'aref x 0)
			     'cl-struct-erc-server-user-tags)
		       (list 'signal
			     (list 'quote 'wrong-type-argument)
			     (list 'list
				   (list 'quote 'erc-server-user) x)))
		 (list 'aref x 1))))
       (if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
  (cl-struct-erc-server-user-tags)]