comparison lispref/loading.texi @ 83162:dbcd0af66869

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-409 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-410 Make sure image types are initialized for lookup too * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-411 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-412 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-413 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-414 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-415 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-416 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-417 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-418 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-419 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-202
author Karoly Lorentey <lorentey@elte.hu>
date Thu, 24 Jun 2004 07:44:13 +0000
parents c9aa4127a482
children 26d02bae850d 59dcbfe97385
comparison
equal deleted inserted replaced
83161:8d62eda26760 83162:dbcd0af66869
1 @c -*-texinfo-*- 1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual. 2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999,
4 @c 2003, 2004
4 @c Free Software Foundation, Inc. 5 @c Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions. 6 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/loading 7 @setfilename ../info/loading
7 @node Loading, Byte Compilation, Customization, Top 8 @node Loading, Byte Compilation, Customization, Top
8 @chapter Loading 9 @chapter Loading
138 @defvar load-in-progress 139 @defvar load-in-progress
139 This variable is non-@code{nil} if Emacs is in the process of loading a 140 This variable is non-@code{nil} if Emacs is in the process of loading a
140 file, and it is @code{nil} otherwise. 141 file, and it is @code{nil} otherwise.
141 @end defvar 142 @end defvar
142 143
144 @defvar load-read-function
143 @anchor{Definition of load-read-function} 145 @anchor{Definition of load-read-function}
144 @defvar load-read-function
145 This variable specifies an alternate expression-reading function for 146 This variable specifies an alternate expression-reading function for
146 @code{load} and @code{eval-region} to use instead of @code{read}. 147 @code{load} and @code{eval-region} to use instead of @code{read}.
147 The function should accept one argument, just as @code{read} does. 148 The function should accept one argument, just as @code{read} does.
148 149
149 Normally, the variable's value is @code{nil}, which means those 150 Normally, the variable's value is @code{nil}, which means those