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