Function: url-parse-make-urlobj--cmacro

url-parse-make-urlobj--cmacro is a function defined in url-parse.el.gz.

Signature

(url-parse-make-urlobj--cmacro _CL-WHOLE-ARG &optional TYPE USER PASSWORD HOST PORTSPEC FILENAME TARGET ATTRIBUTES FULLNESS)

Documentation

compiler-macro for inlining url-parse-make-urlobj.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-parse.el.gz
;; Closure converted to defun by helpful.
(defun url-parse-make-urlobj--cmacro
    (_cl-whole-arg &optional type user password host portspec filename target attributes fullness)
  "compiler-macro for inlining `url-parse-make-urlobj'."
  (cl-block url-parse-make-urlobj--cmacro
    (cl--defsubst-expand
     '(type user password host portspec filename target attributes fullness)
     '(cl-block url-parse-make-urlobj
	(record 'url type user password host portspec filename target attributes fullness nil t t))
     nil nil nil type user password host portspec filename target attributes fullness)))