summaryrefslogtreecommitdiff
path: root/doc/misc/srecode.texi
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-12-27 17:24:52 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2021-12-27 17:24:52 -0500
commit13ef21e84a8c4af0cd9e7a5f9c56a359b1344fe9 (patch)
tree3c8815e3acd5b09249e91e5a23e1df73134fd0cc /doc/misc/srecode.texi
parent0fb55c8776d75d08da626f84ca5570da7e95391e (diff)
downloademacs-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 'doc/misc/srecode.texi')
-rw-r--r--doc/misc/srecode.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/misc/srecode.texi b/doc/misc/srecode.texi
index 16a348e0f8f..8e55ac2971c 100644
--- a/doc/misc/srecode.texi
+++ b/doc/misc/srecode.texi
@@ -1070,9 +1070,9 @@ Here is an example of wrapping a semantic tag in a compound value:
"Wrap up a collection of semantic tag information.
This class will be used to derive dictionary values.")
-(defmethod srecode-compound-toString((cp srecode-semantic-tag)
- function
- dictionary)
+(cl-defmethod srecode-compound-toString ((cp srecode-semantic-tag)
+ function
+ dictionary)
"Convert the compound dictionary value CP to a string.
If FUNCTION is non-nil, then FUNCTION is somehow applied to an
aspect of the compound value."