From 4e09f90ce1e896bd61ebb2897c00f19ee856cca5 Mon Sep 17 00:00:00 2001 From: Andreas Fuglesteg Dale Date: Thu, 14 Aug 2025 19:16:27 +0200 Subject: [PATCH] Add float trap mask to use-foreign-library --- webview.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webview.lisp b/webview.lisp index 4dc027a..33cd899 100644 --- a/webview.lisp +++ b/webview.lisp @@ -37,7 +37,8 @@ (:windows "webview.dll") (t (:default "libwebview"))) -(use-foreign-library libwebview) +(float-features:with-float-traps-masked (:divide-by-zero) + (use-foreign-library libwebview)) (defctype webview-t :pointer) (defctype webview-error-t :int)