diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -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 | { |