diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-21 15:56:33 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-21 15:56:33 +0100 |
commit | 1a923e5ac642a914e8c789f95733dda5d64c4f14 (patch) | |
tree | 4c8197df0f2fa7127754f771f52f56be6b1e213c | |
parent | 73e862237d1db167d4f5712f95f68b8b17816ea9 (diff) | |
download | emacs-1a923e5ac642a914e8c789f95733dda5d64c4f14.tar.gz emacs-1a923e5ac642a914e8c789f95733dda5d64c4f14.tar.bz2 emacs-1a923e5ac642a914e8c789f95733dda5d64c4f14.zip |
Silence additional byte-compiler warning in test
* test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el:
Silence byte-compiler.
-rw-r--r-- | test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el b/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el index e881e46a2d1..bc89f23b582 100644 --- a/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el +++ b/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el @@ -271,6 +271,7 @@ (defclass E (E-base1 E-base2) () :method-invocation-order :breadth-first) (with-suppressed-warnings ((obsolete defmethod) + (obsolete defgeneric) (obsolete next-method-p) (obsolete call-next-method)) (defmethod eitest-F ((_p E)) |