diff options
author | Andy Wingo <wingo@pobox.com> | 2011-06-17 19:16:16 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-06-17 19:16:16 +0200 |
commit | f86f748db26eba15ca71e65b3e084a2fcbf8c3ac (patch) | |
tree | a611c0f41ad6e9cc7304f757e4b3170fd9cd402e | |
parent | 669ea4ebff8f0eb69b36f3d55b60e69f9f27c761 (diff) | |
download | guile-f86f748db26eba15ca71e65b3e084a2fcbf8c3ac.tar.gz |
add -Wformat to %auto-compilation-options
* module/ice-9/boot-9.scm (%auto-compilation-options): Add -Wformat to
the default warning set.
-rw-r--r-- | module/ice-9/boot-9.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm index f31cffb5a..a70b9f71e 100644 --- a/module/ice-9/boot-9.scm +++ b/module/ice-9/boot-9.scm @@ -3447,7 +3447,7 @@ module '(ice-9 q) '(make-q q-length))}." (define %auto-compilation-options ;; Default `compile-file' option when auto-compiling. - '(#:warnings (unbound-variable arity-mismatch))) + '(#:warnings (unbound-variable arity-mismatch format))) (define* (load-in-vicinity dir path #:optional reader) ;; Returns the .go file corresponding to `name'. Does not search load |