Function: edebug-match-nil
edebug-match-nil is a byte-compiled function defined in edebug.el.gz.
Signature
(edebug-match-nil CURSOR)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-match-nil (cursor)
;; There must be nothing left to match a nil.
(if (not (edebug-empty-cursor cursor))
(edebug-no-match cursor "Unmatched argument(s)")
nil))