diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-27 17:24:52 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-27 17:24:52 -0500 |
commit | 13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9 (patch) | |
tree | 3c8815e3acd5b09249e91e5a23e1df73134fd0cc /test/manual | |
parent | 0fb55c8776d75d08da626f84ca5570da7e95391e (diff) | |
download | emacs-13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9.tar.gz emacs-13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9.tar.bz2 emacs-13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9.zip |
Fix EIEIO tests to account for eieio-compat move
* test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el:
* test/lisp/emacs-lisp/eieio-tests/eieio-tests.el:
Require `eieio-compat` explicitly.
* test/manual/cedet/tests/test.el (a-method, a-generic):
* doc/misc/srecode.texi (Compound Dictionary Values):
* doc/misc/ede.texi (ede-generic-project): Update sample code to use
cl-generic syntax.
Diffstat (limited to 'test/manual')
-rw-r--r-- | test/manual/cedet/tests/test.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/manual/cedet/tests/test.el b/test/manual/cedet/tests/test.el index 34c03619f88..246a856665b 100644 --- a/test/manual/cedet/tests/test.el +++ b/test/manual/cedet/tests/test.el @@ -63,11 +63,11 @@ ;;; Methods ;; -(defmethod a-method ((obj some-class) &optional arg2) +(cl-defmethod a-method ((obj some-class) &optional arg2) "Doc String for a method." (call-next-method)) -(defgeneric a-generic (arg1 arg2) +(cl-defgeneric a-generic (arg1 arg2) "General description of a-generic.") ;;; Advice |