(get-destructive-mode)
This procedure returns #t if macros are currently expanded destructively, otherwise #f. It’s recommended to leave this boolean setting at the default of #t for normal use.
#t or #f.
> (get-destructive-mode)
#t
> (set-destructive-mode! #f)
ok
> (get-destructive-mode)
#f
>