]> git.eshelyaron.com Git - emacs.git/commitdiff
(Vloads_in_progress): Static.
authorLute Kamstra <lute@gnu.org>
Mon, 18 Apr 2005 10:22:20 +0000 (10:22 +0000)
committerLute Kamstra <lute@gnu.org>
Mon, 18 Apr 2005 10:22:20 +0000 (10:22 +0000)
src/ChangeLog
src/lread.c

index a9ecedf1c535f1431eeed8c31f19b620a9b6fb2e..953c38dbdb96745cea56d75dad83cfc5151f2a4b 100644 (file)
@@ -1,3 +1,10 @@
+2005-04-18  Lute Kamstra  <lute@gnu.org>
+
+       * lread.c (Vloads_in_progress): Static.
+       * fns.c (Vloads_in_progress): Remove extern.
+       (load_in_progress): Add extern.
+       (Frequire): Use load_in_progress instead of Vloads_in_progress.
+
 2005-04-18  Thien-Thi Nguyen  <ttn@gnu.org>
 
        * xmenu.c (Fx_popup_menu): Initialize error_name to NULL.
        into "(any string)".
 
        * lread.c (Vloads_in_progress): Not static.
-
        * fns.c (Vloads_in_progress): Add extern.
        (Frequire): Don't do LOADHIST_ATTACH if Vloads_in_progress is nil.
 
index b634e70934b9abd457b3b6fc83ef219f3ca69f32..cd0e7544ad44f66da3aabb0769ad9155befcb44d 100644 (file)
@@ -1,6 +1,6 @@
 /* Lisp parsing and input streams.
    Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998,
-     1999, 2000, 2001, 2003, 2004  Free Software Foundation, Inc.
+     1999, 2000, 2001, 2003, 2004, 2005  Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -89,7 +89,7 @@ Lisp_Object Qinhibit_file_name_operation;
 extern Lisp_Object Qevent_symbol_element_mask;
 extern Lisp_Object Qfile_exists_p;
 
-/* non-zero if inside `load' */
+/* non-zero iff inside `load' */
 int load_in_progress;
 
 /* Directory in which the sources were found.  */
@@ -193,7 +193,7 @@ static int new_backquote_flag;
 /* A list of file names for files being loaded in Fload.  Used to
    check for recursive loads.  */
 
-Lisp_Object Vloads_in_progress;
+static Lisp_Object Vloads_in_progress;
 
 /* Non-zero means load dangerous compiled Lisp files.  */