Function: url-host--cmacro
url-host--cmacro is a function defined in url-parse.el.gz.
Signature
(url-host--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining url-host.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-parse.el.gz
;; Closure converted to defun by helpful.
(defun url-host--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `url-host'."
(cl-block url-host--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block url-host
(progn
(or
(url-p cl-x)
(signal 'wrong-type-argument
(list 'url cl-x)))
(aref cl-x 4)))
nil nil nil cl-x)))