Function: cl-call-next-method
cl-call-next-method is a byte-compiled function defined in
cl-generic.el.gz.
Signature
(cl-call-next-method &rest ARGS)
Documentation
Function to call the next applicable method.
Can only be used from within the lexical body of a primary or around method.
Aliases
call-next-method (obsolete since 25.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-generic.el.gz
(defun cl-call-next-method (&rest _args)
"Function to call the next applicable method.
Can only be used from within the lexical body of a primary or around method."
(error "cl-call-next-method only allowed inside primary and around methods"))