[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: gaf.git: branch: master updated (1.7.1-20110619-184-g34d46a6)
The branch, master has been updated
via 34d46a6158050b232f29e61d0cae8ac1aacca2a6 (commit)
from f42bdab5a5db15c80fa704fe37a62f602c188d9f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
libgeda/lib/system-gafrc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
=================
Commit Messages
=================
commit 34d46a6158050b232f29e61d0cae8ac1aacca2a6
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
libgeda: Don't enable debugging when using Guile 2.
Guile 2 always has debugging enabled, and emits a warning if you
attempt to enable it explicitly. This patch therefore reduces tools'
verbosity on start-up. Thanks to Ludovic Courtès for explaining the
fix.
:100644 100644 26b02bd... af9c5dc... M libgeda/lib/system-gafrc
=========
Changes
=========
commit 34d46a6158050b232f29e61d0cae8ac1aacca2a6
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
libgeda: Don't enable debugging when using Guile 2.
Guile 2 always has debugging enabled, and emits a warning if you
attempt to enable it explicitly. This patch therefore reduces tools'
verbosity on start-up. Thanks to Ludovic Courtès for explaining the
fix.
diff --git a/libgeda/lib/system-gafrc b/libgeda/lib/system-gafrc
index 26b02bd..af9c5dc 100644
--- a/libgeda/lib/system-gafrc
+++ b/libgeda/lib/system-gafrc
@@ -10,7 +10,8 @@
; geda-rc-path -- path to gEDA system-wide config directory
;; Set some flags to aid in debugging rc files
-(debug-enable 'debug)
+(cond-expand (guile-2 #t)
+ (guile (debug-enable 'debug)))
(debug-enable 'backtrace)
(read-enable 'positions)
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs