From bdbf14a95b91d6936ff9aa3681b1fe5da0912abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Vask=C3=B3?= Date: Sun, 10 Nov 2019 17:00:17 +0100 Subject: [PATCH] advice.el: removing unneeded advices --- advice.el | 9 --------- 1 file changed, 9 deletions(-) diff --git a/advice.el b/advice.el index 9e85ca8..c2ab043 100644 --- a/advice.el +++ b/advice.el @@ -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)))