Function: make-xref-file-location--cmacro
make-xref-file-location--cmacro is a function defined in xref.el.gz.
Signature
(make-xref-file-location--cmacro CL-WHOLE &cl-quote &key FILE LINE COLUMN)
Documentation
compiler-macro for inlining make-xref-file-location.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
;; Closure converted to defun by helpful.
(defun make-xref-file-location--cmacro
(cl-whole &rest --cl-rest--)
"compiler-macro for inlining `make-xref-file-location'.\n\n\\(fn CL-WHOLE &cl-quote &key FILE LINE COLUMN)"
(let*
((file
(car
(cdr
(plist-member --cl-rest-- ':file))))
(line
(car
(cdr
(plist-member --cl-rest-- ':line))))
(column
(car
(cdr
(plist-member --cl-rest-- ':column)))))
(progn
(let
((--cl-keys-- --cl-rest--))
(while --cl-keys--
(cond
((memq
(car --cl-keys--)
'(:file :line :column :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 (:file :line :column)"
(car --cl-keys--))))))
(cl-block make-xref-file-location--cmacro
(cl--defsubst-expand
'(file line column)
'(cl-block make-xref-file-location
(record 'xref-file-location file line column))
nil cl-whole nil file line column)))))