advice.el: removing unneeded advices

This commit is contained in:
László Vaskó
2019-11-10 17:00:17 +01:00
parent 2dca32ed63
commit bdbf14a95b

View File

@ -9,12 +9,3 @@
:around (lambda (orig-print &rest r)
(let ((noninteractive nil))
(apply orig-print r))))))
(advice-add 'doom-call-process
:before (lambda (&rest r)
(message "> call-process %s" r)))
(advice-add 'doom-call-process
:after (lambda (&rest r)
(message "< call-process %s" r)))