summaryrefslogtreecommitdiff
path: root/doc/misc/ede.texi
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2020-06-03 17:31:44 +0100
committerBasil L. Contovounesios <contovob@tcd.ie>2020-06-06 16:35:52 +0100
commitd8593fd19ffdb1fa62f0b0c4b971cfdb325fbe1d (patch)
treeed7588bd560101abbcf30159c75e227d32a885d3 /doc/misc/ede.texi
parent3916e63f9e98269930c4935dd5b3b88c4d940a62 (diff)
downloademacs-d8593fd19ffdb1fa62f0b0c4b971cfdb325fbe1d.tar.gz
Minor improvements to EDE and EIEIO manuals
For discussion, see the following threads: https://lists.gnu.org/archive/html/emacs-devel/2020-05/msg00630.html https://lists.gnu.org/archive/html/emacs-devel/2020-06/msg00099.html * doc/misc/ede.texi (ede-generic-project): Clean up example. * doc/misc/eieio.texi (Accessing Slots): Document slot-value as a generalized variable and set-slot-value as obsolete. (Predicates): Fix typo. (Introspection): Document eieio-class-slots in place of the obsolete object-slots.
Diffstat (limited to 'doc/misc/ede.texi')
-rw-r--r--doc/misc/ede.texi10
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi
index 584b0d7ee50..412176986cc 100644
--- a/doc/misc/ede.texi
+++ b/doc/misc/ede.texi
@@ -955,18 +955,16 @@ The example for Makefiles looks like this:
;;; MAKEFILE
(defclass ede-generic-makefile-project (ede-generic-project)
- ((buildfile :initform "Makefile")
- )
+ ((buildfile :initform "Makefile"))
"Generic Project for makefiles.")
(defmethod ede-generic-setup-configuration ((proj ede-generic-makefile-project) config)
- "Setup a configuration for Make."
+ "Set up a configuration for Make."
(oset config build-command "make -k")
- (oset config debug-command "gdb ")
- )
+ (oset config debug-command "gdb "))
(ede-generic-new-autoloader "generic-makefile" "Make"
- "Makefile" 'ede-generic-makefile-project)
+ "Makefile" 'ede-generic-makefile-project)
@end example
This example project will detect any directory with the file