From 60e12dabc05f0e83e60a436d2ee249203448eb5f Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Mon, 20 Oct 2025 16:57:44 -0700 Subject: [PATCH] Removes comment that is now unnecessary/confusing --- src/dsk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsk.c b/src/dsk.c index 2299127..7b3c464 100644 --- a/src/dsk.c +++ b/src/dsk.c @@ -672,7 +672,7 @@ LispPTR COM_closefile(LispPTR *args) time[1].tv_sec = (long)ToUnixTime(cdate); time[1].tv_usec = 0L; #endif /* DOS */ - TIMEOUT(rval = close(fd)); // cancels alarm from S_TOUT + TIMEOUT(rval = close(fd)); if (rval == -1) { *Lisp_errno = errno; return (NIL);