-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
44 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/libguile/load.c b/libguile/load.c | ||
index c209812dc..05f47c09e 100644 | ||
--- a/libguile/load.c | ||
+++ b/libguile/load.c | ||
@@ -550,6 +550,7 @@ static int | ||
compiled_is_fresh (SCM full_filename, SCM compiled_filename, | ||
struct stat *stat_source, struct stat *stat_compiled) | ||
{ | ||
+ return 1; | ||
int compiled_is_newer; | ||
struct timespec source_mtime, compiled_mtime; | ||
|
||
@@ -569,8 +570,6 @@ compiled_is_fresh (SCM full_filename, SCM compiled_filename, | ||
scm_display (compiled_filename, scm_current_warning_port ()); | ||
scm_puts ("\n", scm_current_warning_port ()); | ||
} | ||
- | ||
- return compiled_is_newer; | ||
} | ||
|
||
static SCM | ||
|