From cf5bb7371418eff582779e87fe207f4dbf8b6215 Mon Sep 17 00:00:00 2001 From: Damien MATTEI Date: Thu, 28 Nov 2024 10:59:30 +0100 Subject: [PATCH] comments --- SRFI-105-curly-infix.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SRFI-105-curly-infix.rkt b/SRFI-105-curly-infix.rkt index 541f93f..512e4df 100644 --- a/SRFI-105-curly-infix.rkt +++ b/SRFI-105-curly-infix.rkt @@ -21,9 +21,9 @@ ;; globals variables that can be modified by coder (define srfi-strict #f) ; enable strict compatibility with SRFI 105 -(define care-of-quote #t) ; keep quoting expression (no $nfx$ will be inserted), +(define care-of-quote #t) ; keep quoted expression (no $nfx$ will be inserted in curly infix expressions), ;; usefull to use symbolic expressions -;; (but makes debugging harder because quoted expression to debug will not be the same as executed) +;; (but makes debugging harder because quoted expression to debug will not be the same as evaluated unquoted ones) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;