Hello,
guile-gnome
devel: fix scm-error incorrect arg ist in gnome.scm
Patch review solicited.
Thanks,
David
>From 31876531f5a40f50e8882d8a3fa08617c803c2ff Mon Sep 17 00:00:00 2001
From: David PIROTTE <da...@altosw.be>
Date: Mon, 19 May 2014 17:06:15 -0300
Subject: [PATCH 7/7] fix scm-error incorrect arg list in gnome.scm
* libgnome/gnome/gnome.scm: Fixing scm-error arg list.
---
libgnome/gnome/gnome.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libgnome/gnome/gnome.scm b/libgnome/gnome/gnome.scm
index 8b20bfd..f9ae002 100644
--- a/libgnome/gnome/gnome.scm
+++ b/libgnome/gnome/gnome.scm
@@ -37,7 +37,7 @@
(define (gnome-program-init name version . properties)
(let ((program (%gnome-program-init name version)))
(if (not (even? (length properties)))
- (scm-error 'gruntime-error "Invalid property list: ~A" properties))
+ (scm-error 'gruntime-error #f "Invalid property list: ~A" properties #f))
(let loop ((props properties))
(if (null? props)
program
--
2.0.0.rc2