aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-10-12 01:32:51 +0000
committerStefan Monnier2001-10-12 01:32:51 +0000
commit0b41c65c36066eda80149034baa47bf2e36b1dae (patch)
tree9e5d932ee29d920e1dedaeac5fe69cfb6649493c
parent47ab3ab36140ed645bef6df55fa743a9fd3845a0 (diff)
downloademacs-0b41c65c36066eda80149034baa47bf2e36b1dae.tar.gz
emacs-0b41c65c36066eda80149034baa47bf2e36b1dae.zip
Recommend the use of define-derived-mode (and nil argument).
-rw-r--r--lispref/modes.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/modes.texi b/lispref/modes.texi
index b855f7e0eca..072f8f69f8f 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -60,9 +60,9 @@ Text mode except that it provides two additional commands. Its
60definition is distinct from that of Text mode, but uses that of Text mode. 60definition is distinct from that of Text mode, but uses that of Text mode.
61 61
62 Even if the new mode is not an obvious derivative of any other mode, 62 Even if the new mode is not an obvious derivative of any other mode,
63it can be convenient to define it as a derivative of 63it is convenient to use @code{define-derived-mode} with a @code{nil}
64@code{fundamental-mode}, so that @code{define-derived-mode} can 64parent argument, since it automatically enforces the most important
65automatically enforce the most important coding conventions for you. 65coding conventions for you.
66 66
67 Rmail Edit mode offers an example of changing the major mode 67 Rmail Edit mode offers an example of changing the major mode
68temporarily for a buffer, so it can be edited in a different way (with 68temporarily for a buffer, so it can be edited in a different way (with