Function: cl-next-method-p

cl-next-method-p is a byte-compiled function defined in cl-generic.el.gz.

This function is obsolete since 25.1; make sure there's always a next method, or catch cl-no-next-method instead

Signature

(cl-next-method-p)

Documentation

Return non-nil if there is a next method.

Can only be used from within the lexical body of a primary or around method.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-generic.el.gz
(defun cl-next-method-p ()
  "Return non-nil if there is a next method.
Can only be used from within the lexical body of a primary or around method."
  (declare (obsolete "make sure there's always a next method, or catch `cl-no-next-method' instead" "25.1"))
  (error "cl-next-method-p only allowed inside primary and around methods"))