aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index 6c47b3e5b1c..b606d6299ca 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2950,9 +2950,12 @@ suppressed. */)
2950 But not more than once in any file, 2950 But not more than once in any file,
2951 and not when we aren't loading or reading from a file. */ 2951 and not when we aren't loading or reading from a file. */
2952 if (!from_file) 2952 if (!from_file)
2953 for (tem = Vcurrent_load_list; CONSP (tem); tem = XCDR (tem)) 2953 {
2954 if (NILP (XCDR (tem)) && STRINGP (XCAR (tem))) 2954 Lisp_Object tail = Vcurrent_load_list;
2955 from_file = 1; 2955 FOR_EACH_TAIL_SAFE (tail)
2956 if (NILP (XCDR (tail)) && STRINGP (XCAR (tail)))
2957 from_file = true;
2958 }
2956 2959
2957 if (from_file) 2960 if (from_file)
2958 { 2961 {