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

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

[elpa] externals/detached f0f9728e2c 31/38: Make local predicate private


From: ELPA Syncer
Subject: [elpa] externals/detached f0f9728e2c 31/38: Make local predicate private
Date: Thu, 17 Nov 2022 17:57:56 -0500 (EST)

branch: externals/detached
commit f0f9728e2c0cb3aa78273d1ce3bbcac9de97cdaf
Author: Niklas Eklund <niklas.eklund@posteo.net>
Commit: Niklas Eklund <niklas.eklund@posteo.net>

    Make local predicate private
---
 detached.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/detached.el b/detached.el
index a63e37d157..97061a96fb 100644
--- a/detached.el
+++ b/detached.el
@@ -421,7 +421,7 @@ This version is encoded as [package-version].[revision].")
   (declare (indent 1))
   `(let ((default-directory (detached-session-working-directory ,session))
          (detached-session-origin (detached--session-origin ,session))
-         (detached-local-session (detached-session-local-p ,session))
+         (detached-local-session (detached--session-local-p ,session))
          (detached-session-mode (detached--session-initial-mode ,session))
          (detached-session-action (detached--session-action ,session))
          (detached-session-command (detached-session-command ,session))
@@ -744,7 +744,7 @@ active session.  For sessions created with 
`detached-compile' or
 
 (defun detached--start-session-process (session start-command)
   "Start SESSION with START-COMMAND."
-  (if (detached-session-local-p session)
+  (if (detached--session-local-p session)
       (apply #'start-process-shell-command `("detached" nil ,start-command))
     (apply #'start-file-process-shell-command `("detached" nil 
,start-command))))
 
@@ -1181,10 +1181,6 @@ This function uses the `notifications' library."
   "Return t if SESSION is degraded."
   (detached--session-degraded session))
 
-(defun detached-session-local-p (session)
-  "Return t if SESSION is forced to run locally."
-  (detached--session-local session))
-
 (defun detached-session-uninitialized-p (session)
   "Return t if SESSION is uninitialized."
   (eq 'uninitialized
@@ -1291,6 +1287,10 @@ This function uses the `notifications' library."
              detached--watched-session-directories
              nil nil #'string=))
 
+(defun detached--session-local-p (session)
+  "Return t if SESSION is forced to run locally."
+  (detached--session-local session))
+
 (defun detached--session-missing-p (session)
   "Return t if SESSION is missing."
   (not



reply via email to

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