summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2011-02-09 14:21:24 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2011-02-09 14:21:24 +0100
commitc676e46833fc2b38b2c21b44b7e6b52b5167329b (patch)
tree6731cf32fb4e9d8a81cfa0260159365a917a8423
parent4be9061b98b7723b5591c86005a25d0e6692208d (diff)
downloadgeiser-guile-c676e46833fc2b38b2c21b44b7e6b52b5167329b.tar.gz
geiser-guile-c676e46833fc2b38b2c21b44b7e6b52b5167329b.tar.bz2
Guile: 'format' added to the warning list
-rw-r--r--elisp/geiser-guile.el6
-rw-r--r--scheme/guile/geiser/evaluation.scm2
2 files changed, 4 insertions, 4 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index e4473d8..abf6afb 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -1,6 +1,6 @@
;; geiser-guile.el -- guile's implementation of the geiser protocols
-;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010, 2011 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -76,8 +76,8 @@ unused-toplevel. Unrecognised symbols are ignored.
The predefined levels are:
- - Medium: arity-mismatch, unbound-variable
- - High: arity-mismatch, unbound-variable, unused-variable
+ - Medium: arity-mismatch, unbound-variable, format
+ - High: arity-mismatch, unbound-variable, unused-variable, format
- None: no warnings
Changes to the value of this variable will automatically take
diff --git a/scheme/guile/geiser/evaluation.scm b/scheme/guile/geiser/evaluation.scm
index b6575ba..c008295 100644
--- a/scheme/guile/geiser/evaluation.scm
+++ b/scheme/guile/geiser/evaluation.scm
@@ -30,7 +30,7 @@
(define compile-opts '())
(define compile-file-opts '())
-(define default-warnings '(arity-mismatch unbound-variable))
+(define default-warnings '(arity-mismatch unbound-variable format))
(define verbose-warnings `(unused-variable ,@default-warnings))
(define (ge:set-warnings wl)