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

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

Signature

(make-xref-etags-apropos-location--cmacro CL-WHOLE &cl-quote &key SYMBOL GOTO-FUN GROUP)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;; Closure converted to defun by helpful.
(defun make-xref-etags-apropos-location--cmacro
    (cl-whole &rest --cl-rest--)
  "compiler-macro for inlining `make-xref-etags-apropos-location'.\n\n\\(fn CL-WHOLE &cl-quote &key SYMBOL GOTO-FUN GROUP)"
  (let*
      ((symbol
	(car
	 (cdr
	  (plist-member --cl-rest-- ':symbol))))
       (goto-fun
	(car
	 (cdr
	  (plist-member --cl-rest-- ':goto-fun))))
       (group
	(car
	 (cdr
	  (plist-member --cl-rest-- ':group)))))
    (progn
      (let
	  ((--cl-keys-- --cl-rest--))
	(while --cl-keys--
	  (cond
	   ((memq
	     (car --cl-keys--)
	     '(:symbol :goto-fun :group :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 (:symbol :goto-fun :group)"
		   (car --cl-keys--))))))
      (cl-block make-xref-etags-apropos-location--cmacro
	(cl--defsubst-expand
	 '(symbol goto-fun group)
	 '(cl-block make-xref-etags-apropos-location
	    (record 'xref-etags-apropos-location symbol goto-fun group))
	 nil cl-whole nil symbol goto-fun group)))))