Fix bug#22069 in cl-generic.el
* lisp/emacs-lisp/cl-generic.el (cl-no-method): Remove %S; this string is not run thru `format'.
This commit is contained in:
parent
f651cd1199
commit
0af2c269b1
1 changed files with 4 additions and 4 deletions
|
@ -797,10 +797,10 @@ methods.")
|
|||
|
||||
;;; Define some pre-defined generic functions, used internally.
|
||||
|
||||
(define-error 'cl-no-method "No method for %S")
|
||||
(define-error 'cl-no-next-method "No next method for %S" 'cl-no-method)
|
||||
(define-error 'cl-no-primary-method "No primary method for %S" 'cl-no-method)
|
||||
(define-error 'cl-no-applicable-method "No applicable method for %S"
|
||||
(define-error 'cl-no-method "No method")
|
||||
(define-error 'cl-no-next-method "No next method" 'cl-no-method)
|
||||
(define-error 'cl-no-primary-method "No primary method" 'cl-no-method)
|
||||
(define-error 'cl-no-applicable-method "No applicable method"
|
||||
'cl-no-method)
|
||||
|
||||
(cl-defgeneric cl-no-next-method (generic method &rest args)
|
||||
|
|
Loading…
Add table
Reference in a new issue