Function: file-notify--callback--cmacro
file-notify--callback--cmacro is a function defined in
filenotify.el.gz.
Signature
(file-notify--callback--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining file-notify--callback.
Source Code
;; Defined in /usr/src/emacs/lisp/filenotify.el.gz
;; Closure converted to defun by helpful.
(defun file-notify--callback--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `file-notify--callback'."
(cl-block file-notify--callback--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block file-notify--callback
(progn
(or
(file-notify-p cl-x)
(signal 'wrong-type-argument
(list 'file-notify cl-x)))
(nth 2 cl-x)))
nil nil nil cl-x)))