emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/eat 55c7d21cef 2/7: Use more uniform names for tracer func


From: ELPA Syncer
Subject: [nongnu] elpa/eat 55c7d21cef 2/7: Use more uniform names for tracer functions
Date: Sat, 3 Dec 2022 14:58:36 -0500 (EST)

branch: elpa/eat
commit 55c7d21cefd48789ea205ac9d179026dead7d2d1
Author: Akib Azmain Turja <akib@disroot.org>
Commit: Akib Azmain Turja <akib@disroot.org>

    Use more uniform names for tracer functions
    
    * eat.el: Rename 'eat--eshell-trace-...' symbols to
    'eat--trace-eshell-...'.
---
 eat.el | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/eat.el b/eat.el
index c0b9e08f52..0f51ebbb48 100644
--- a/eat.el
+++ b/eat.el
@@ -5396,7 +5396,7 @@ FN is original definition of `eat-reset'."
           (funcall eat-term-redisplay terminal))))
     (funcall fn)))
 
-(defun eat--eshell-trace-adjust-make-process-args (fn &rest args)
+(defun eat--trace-eshell-adjust-make-process-args (fn &rest args)
   "Trace `eat--eshell-adjust-make-process-args'.
 
 ARGS is passed to FN, `eat--eshell-adjust-make-process-args', which
@@ -5439,7 +5439,7 @@ see."
                                     variables)))))))))
     (apply fn args)))
 
-(defun eat--eshell-trace-output-filter (fn)
+(defun eat--trace-eshell-output-filter (fn)
   "Trace `eat--eshell-output-filter'.
 
 FN is the original definition of `eat--eshell-output-filter', which
@@ -5462,7 +5462,7 @@ see."
                   (funcall eat-term-redisplay terminal))))
       (funcall fn))))
 
-(defun eat--eshell-trace-cleanup (fn)
+(defun eat--trace-eshell-cleanup (fn)
   "Trace `eat--eshell-cleanup'.
 
 FN is the original definition of `eat--eshell-cleanup', which see."
@@ -5490,11 +5490,11 @@ FN is the original definition of `eat--eshell-cleanup', 
which see."
         (advice-add #'eat--sentinel :around #'eat--trace-sentinel)
         (advice-add #'eat-reset :around #'eat--trace-reset)
         (advice-add #'eat--eshell-adjust-make-process-args :around
-                    #'eat--eshell-trace-adjust-make-process-args)
+                    #'eat--trace-eshell-adjust-make-process-args)
         (advice-add #'eat--eshell-output-filter :around
-                    #'eat--eshell-trace-output-filter)
+                    #'eat--trace-eshell-output-filter)
         (advice-add #'eat--eshell-cleanup :around
-                    #'eat--eshell-trace-cleanup))
+                    #'eat--trace-eshell-cleanup))
     (advice-remove #'eat-exec #'eat--trace-exec)
     (advice-remove #'eat--process-output-queue
                    #'eat--trace-process-output-queue)
@@ -5503,11 +5503,11 @@ FN is the original definition of `eat--eshell-cleanup', 
which see."
     (advice-remove #'eat--sentinel #'eat--trace-sentinel)
     (advice-remove #'eat-reset #'eat--trace-reset)
     (advice-remove #'eat--eshell-adjust-make-process-args
-                   #'eat--eshell-trace-adjust-make-process-args)
+                   #'eat--trace-eshell-adjust-make-process-args)
     (advice-remove #'eat--eshell-output-filter
-                   #'eat--eshell-trace-output-filter)
+                   #'eat--trace-eshell-output-filter)
     (advice-remove #'eat--eshell-cleanup
-                   #'eat--eshell-trace-cleanup)
+                   #'eat--trace-eshell-cleanup)
     (dolist (buffer (buffer-list))
       (when (buffer-local-value 'eat--trace-output-buffer buffer)
         (with-current-buffer buffer



reply via email to

[Prev in Thread] Current Thread [Next in Thread]