Undefine setpgrp before setting it.
[bpt/emacs.git] / lispref / loading.texi
index 4c7cb36..c53edbe 100644 (file)
@@ -1,6 +1,7 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. 
+@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
+@c   Free Software Foundation, Inc. 
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/loading
 @node Loading, Byte Compilation, Customization, Top
@@ -286,7 +287,7 @@ tells @code{locate-library} to display the file name in the echo area.
 @end deffn
 
 @node Loading Non-ASCII
-@section Loading Non-ASCII Characters
+@section Loading Non-@sc{ascii} Characters
 
   When Emacs Lisp programs contain string constants with non-@sc{ascii}
 characters, these can be represented within Emacs either as unibyte
@@ -436,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}.
@@ -536,9 +537,9 @@ has been loaded before:
 If the library uses @code{provide} to provide a named feature, you can
 use @code{featurep} earlier in the file to test whether the
 @code{provide} call has been executed before.
-@ifinfo
+@ifnottex
 @xref{Named Features}.
-@end ifinfo
+@end ifnottex
 
 @node Named Features
 @section Features
@@ -755,7 +756,7 @@ rather than replacing that element.  @xref{Eval}.
 
   Preloaded libraries don't contribute initially to @code{load-history}.
 Instead, preloading writes information about preloaded libraries into a
-file, which can be loaded later on to to add information to
+file, which can be loaded later on to add information to
 @code{load-history} describing the preloaded files.  This file is
 installed in @code{exec-directory} and has a name of the form
 @file{fns-@var{emacsversion}.el}.
@@ -764,7 +765,6 @@ installed in @code{exec-directory} and has a name of the form
   See the source for the function @code{symbol-file}, for an example of
 code that loads this file to find functions in preloaded libraries.
 
-@tindex loadhist-special-hooks
 @defvar loadhist-special-hooks
 This variable holds a list of hooks to be scanned before unloading a
 library, to remove functions defined in the library.