Function: tramp-file-name-host--cmacro

tramp-file-name-host--cmacro is a function defined in tramp.el.gz.

Signature

(tramp-file-name-host--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining tramp-file-name-host.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
;; Closure converted to defun by helpful.
(defun tramp-file-name-host--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `tramp-file-name-host'."
  (cl-block tramp-file-name-host--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block tramp-file-name-host
	(progn
	  (or
	   (tramp-file-name-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'tramp-file-name cl-x)))
	  (nth 4 cl-x)))
     nil nil nil cl-x)))