summaryrefslogtreecommitdiff
path: root/libguile/srcprop.c
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-04-17 09:15:39 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-04-17 09:15:39 +0000
commit216eedfcae5e85c8bad8b1138d6e947ab1c67fa1 (patch)
tree9a7ef0273b5adb06080c78175acc7dd9e5c6cea2 /libguile/srcprop.c
parentac16426b15644eed9948b38b0e06824096d7b3d4 (diff)
downloadguile-216eedfcae5e85c8bad8b1138d6e947ab1c67fa1.tar.gz
* Incorporated fixes to interrupt deferring/allowing from Niibe.
* Added SCM_DEBUG_INTERRUPTS as a debugging option.
Diffstat (limited to 'libguile/srcprop.c')
-rw-r--r--libguile/srcprop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/srcprop.c b/libguile/srcprop.c
index 1b9aa2bbe..606a62392 100644
--- a/libguile/srcprop.c
+++ b/libguile/srcprop.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation
+/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -148,6 +148,7 @@ scm_make_srcprops (int line, int col, SCM filename, SCM copy, SCM plist)
ptr->fname = filename;
ptr->copy = copy;
ptr->plist = plist;
+ SCM_ALLOW_INTS;
SCM_RETURN_NEWSMOB (scm_tc16_srcprops, ptr);
}