This is an automated email from the git hooks/post-receive script.

wingo pushed a commit to branch wip-whippet
in repository guile.

The following commit(s) were added to refs/heads/wip-whippet by this push:
     new 95856446f Trim (ice-9 guardians) module use list
95856446f is described below

commit 95856446f514f87229c87329828a3fefdeb75859
Author: Andy Wingo <wi...@pobox.com>
AuthorDate: Sun May 4 20:49:44 2025 +0200

    Trim (ice-9 guardians) module use list
    
    * module/ice-9/guardians.scm: Remove useless include.
---
 module/ice-9/guardians.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/module/ice-9/guardians.scm b/module/ice-9/guardians.scm
index 2531c6e8f..073525e1e 100644
--- a/module/ice-9/guardians.scm
+++ b/module/ice-9/guardians.scm
@@ -15,13 +15,13 @@
 ;;; <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
-;;; 
+;;;
 ;;; This is an implementation of guardians as described in:
 ;;;
 ;;;  R. Kent Dybvig, Carl Bruggeman, and David Eby.  "Guardians in a
 ;;;  Generation-Based Garbage Collector."  PLDI 1993.
 ;;;  https://dl.acm.org/doi/abs/10.1145/173262.155110
-;;; 
+;;;
 ;;; Our implementation is terms of Whippet's multi-priority finalizers:
 ;;; 
https://wingolog.org/archives/2024/07/22/finalizers-guardians-phantom-references-et-cetera
 ;;;
@@ -33,7 +33,6 @@
 
 
 (define-module (ice-9 guardians)
-  #:use-module (srfi srfi-9)
   #:use-module (system finalizers)
   #:use-module (ice-9 atomic)
   #:use-module (ice-9 match)

Reply via email to