One line 230, old style quotes are used and no longer work with Emacs 27. I'm using the Melpa version, and not sure if this is the version to modify, but here's the offending macro:
;; Utilities
(defmacro as-safe (&rest body)
"Safely execute BODY, return nil if an error occurred."
( (condition-case nil
(progn (,@ body))
(error nil))))
becomes:
;; Utilities
(defmacro as-safe (&rest body)
"Safely execute BODY, return nil if an error occurred."
(condition-case nil
One line 230, old style quotes are used and no longer work with Emacs 27. I'm using the Melpa version, and not sure if this is the version to modify, but here's the offending macro:
;; Utilities (defmacro as-safe (&rest body)
(progn (,@ body))
becomes:
;; Utilities (defmacro as-safe (&rest body)