aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorLute Kamstra2005-04-18 10:22:20 +0000
committerLute Kamstra2005-04-18 10:22:20 +0000
commit9942fa0cc18035775715ce99a3af95ee02870016 (patch)
tree743135b455b197b94d28dc9aa561523fbce22a0b /src/lread.c
parent7aed223df91314cb90295e9199ad960aec71a312 (diff)
downloademacs-9942fa0cc18035775715ce99a3af95ee02870016.tar.gz
emacs-9942fa0cc18035775715ce99a3af95ee02870016.zip
(Vloads_in_progress): Static.
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 b634e70934b..cd0e7544ad4 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1,6 +1,6 @@
1/* Lisp parsing and input streams. 1/* Lisp parsing and input streams.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998, 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998,
3 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. 3 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -89,7 +89,7 @@ Lisp_Object Qinhibit_file_name_operation;
89extern Lisp_Object Qevent_symbol_element_mask; 89extern Lisp_Object Qevent_symbol_element_mask;
90extern Lisp_Object Qfile_exists_p; 90extern Lisp_Object Qfile_exists_p;
91 91
92/* non-zero if inside `load' */ 92/* non-zero iff inside `load' */
93int load_in_progress; 93int load_in_progress;
94 94
95/* Directory in which the sources were found. */ 95/* Directory in which the sources were found. */
@@ -193,7 +193,7 @@ static int new_backquote_flag;
193/* A list of file names for files being loaded in Fload. Used to 193/* A list of file names for files being loaded in Fload. Used to
194 check for recursive loads. */ 194 check for recursive loads. */
195 195
196Lisp_Object Vloads_in_progress; 196static Lisp_Object Vloads_in_progress;
197 197
198/* Non-zero means load dangerous compiled Lisp files. */ 198/* Non-zero means load dangerous compiled Lisp files. */
199 199