Function: make-xref-etags-location--cmacro

make-xref-etags-location--cmacro is a function defined in etags.el.gz.

Signature

(make-xref-etags-location--cmacro CL-WHOLE &cl-quote &key TAG-INFO FILE)

Documentation

compiler-macro for inlining make-xref-etags-location.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;; Closure converted to defun by helpful.
(defun make-xref-etags-location--cmacro
    (cl-whole &rest --cl-rest--)
  "compiler-macro for inlining `make-xref-etags-location'.\n\n\\(fn CL-WHOLE &cl-quote &key TAG-INFO FILE)"
  (let*
      ((tag-info
	(car
	 (cdr
	  (plist-member --cl-rest-- ':tag-info))))
       (file
	(car
	 (cdr
	  (plist-member --cl-rest-- ':file)))))
    (progn
      (let
	  ((--cl-keys-- --cl-rest--))
	(while --cl-keys--
	  (cond
	   ((memq
	     (car --cl-keys--)
	     '(:tag-info :file :allow-other-keys))
	    (setq --cl-keys--
		  (cdr
		   (cdr --cl-keys--))))
	   ((car
	     (cdr
	      (memq ':allow-other-keys --cl-rest--)))
	    (setq --cl-keys-- nil))
	   (t
	    (error "Keyword argument %s not one of (:tag-info :file)"
		   (car --cl-keys--))))))
      (cl-block make-xref-etags-location--cmacro
	(cl--defsubst-expand
	 '(tag-info file)
	 '(cl-block make-xref-etags-location
	    (record 'xref-etags-location tag-info file))
	 nil cl-whole nil tag-info file)))))