fix call to deprecated function `evil-called-interactively-p'.
This function has been deprecated after Emacs 24. See https://github.com/emacs-evil/evil/pull/771/.
It has been added back as a deprecated function, however, so I don't quite know why I encountered it now. Still, I thought why not fix it.
my name is mark polyakov, and i approve this message
of course, since this'll never probably get merged, the workaround is:
(defun evil-called-interactively-p ()
(called-interactively-p 'any))
This is one of the reasons why I developed enhanced-evil-paredit (available on MELPA), a fork of evil-paredit. It fixes this issue along with a few others.
If your sole objective is to resolve this issue, the workaround by @markasoftware-aqtc fixes it.