*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sat, 15 Apr 2000 16:24:22 +0000 (16:24 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 15 Apr 2000 16:24:22 +0000 (16:24 +0000)
lispref/loading.texi
lispref/modes.texi
lispref/os.texi

index ad08a1a1e7ef02f1a22c62dc4e0ddf4cfab55b1f..c53edbe77ec592fd07f992caa5433a9491a49ac9 100644 (file)
@@ -437,7 +437,7 @@ autoloads for all files in the current directory.
 function-defining form or a @code{defcustom} form, it is copied
 verbatim.  ``Function-defining forms'' include @code{define-skeleton},
 @code{define-derived-mode}, @code{define-generic-mode} and
-@code{easy-mmode-define-minor-mode} as well as @code{defun} and
+@code{define-minor-mode} as well as @code{defun} and
 @code{defmacro}.  To save space, a @code{defcustom} form is converted to
 a @code{defvar} in @file{loaddefs.el}, with some additional information
 if it uses @code{:require}.
index 6f1c8878f4a381a84740d3a71859605c7b7dea3f..12686adac488610464da1585b4b03ffd6e77c2c5 100644 (file)
@@ -59,6 +59,11 @@ Modes}).  For example, Rmail Edit mode, which is in
 Text mode except that it provides two additional commands.  Its
 definition is distinct from that of Text mode, but uses that of Text mode.
 
+  Even if the new mode is not an obvious derivative of any other mode,
+it can be convenient to define it as a derivative of
+@code{fundamental-mode}, so that @code{define-derived-mode} can
+automatically enforce the most important coding conventions for you.
+
   Rmail Edit mode offers an example of changing the major mode
 temporarily for a buffer, so it can be edited in a different way (with
 ordinary Emacs commands rather than Rmail commands).  In such cases, the
index 6c698a55815d29c003e1f4e6197d34f4b7f739a8..2086849e19a8f5425f9f4df3d5253582f6f31616 100644 (file)
@@ -57,8 +57,11 @@ it is started up is as follows:
 
 @enumerate
 @item
-It adds subdirectories to @code{load-path}, by running the file
-named @file{subdirs.el} in each directory that is listed.
+It adds subdirectories to @code{load-path}, by running the file named
+@file{subdirs.el} in each directory in the list.  Normally this file
+adds the directory's subdirectories to the list, and these will be
+scanned in their turn.  The files @file{subdirs.el} are normally
+generated automatically by Emacs installation.
 
 @item
 It sets the language environment and the terminal coding system,