Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save svetlyak40wt/b06c18b56e1661bb0aabd33c023fdf16 to your computer and use it in GitHub Desktop.
Save svetlyak40wt/b06c18b56e1661bb0aabd33c023fdf16 to your computer and use it in GitHub Desktop.
(defun transform-function-definer-options (options)
(bind ((debug-level (normalize-debug-level
(getf options :debug (max #+sbcl (sb-c::policy-quality sb-c::*policy* 'debug)
(or (production-only* 0)
1))))))
(when (> debug-level 0)
(remove-from-plistf options :inline :optimize))
(list* :debug debug-level
(remove-from-plist options :debug))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment