aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorMiles Bader2007-08-13 13:51:08 +0000
committerMiles Bader2007-08-13 13:51:08 +0000
commitaaf34461ff5804e5cebe163b31e535da72e81d87 (patch)
treeb096310b459b78e437f08ac0f1f00954840a5db5 /src/lread.c
parent61d032dfd91b811d59acd7605ac02758be97e912 (diff)
parent37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (diff)
downloademacs-aaf34461ff5804e5cebe163b31e535da72e81d87.tar.gz
emacs-aaf34461ff5804e5cebe163b31e535da72e81d87.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 846-851) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 88-92) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 242-244) - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-31
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c
index 78e8b2730fe..bc667fc9270 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -95,7 +95,7 @@ Lisp_Object Qfile_truename, Qdo_after_load_evaluation; /* ACM 2006/5/16 */
95extern Lisp_Object Qevent_symbol_element_mask; 95extern Lisp_Object Qevent_symbol_element_mask;
96extern Lisp_Object Qfile_exists_p; 96extern Lisp_Object Qfile_exists_p;
97 97
98/* non-zero iff inside `load' */ 98/* non-zero if inside `load' */
99int load_in_progress; 99int load_in_progress;
100 100
101/* Directory in which the sources were found. */ 101/* Directory in which the sources were found. */
@@ -1128,7 +1128,7 @@ in which case file-name-handlers are ignored. */)
1128 On success, returns a file descriptor. On failure, returns -1. 1128 On success, returns a file descriptor. On failure, returns -1.
1129 1129
1130 SUFFIXES is a list of strings containing possible suffixes. 1130 SUFFIXES is a list of strings containing possible suffixes.
1131 The empty suffix is automatically added iff the list is empty. 1131 The empty suffix is automatically added if the list is empty.
1132 1132
1133 PREDICATE non-nil means don't open the files, 1133 PREDICATE non-nil means don't open the files,
1134 just look for one that satisfies the predicate. In this case, 1134 just look for one that satisfies the predicate. In this case,
@@ -4079,7 +4079,7 @@ customize `jka-compr-load-suffixes' rather than the present variable. */);
4079 Vload_file_rep_suffixes = Fcons (empty_unibyte_string, Qnil); 4079 Vload_file_rep_suffixes = Fcons (empty_unibyte_string, Qnil);
4080 4080
4081 DEFVAR_BOOL ("load-in-progress", &load_in_progress, 4081 DEFVAR_BOOL ("load-in-progress", &load_in_progress,
4082 doc: /* Non-nil iff inside of `load'. */); 4082 doc: /* Non-nil if inside of `load'. */);
4083 4083
4084 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist, 4084 DEFVAR_LISP ("after-load-alist", &Vafter_load_alist,
4085 doc: /* An alist of expressions to be evalled when particular files are loaded. 4085 doc: /* An alist of expressions to be evalled when particular files are loaded.