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

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

[nongnu] elpa/with-editor ebf6ee4 034/140: with-editor-debug: don't run


From: Jonas Bernoulli
Subject: [nongnu] elpa/with-editor ebf6ee4 034/140: with-editor-debug: don't run emacsclientw.exe, it makes popup windows
Date: Fri, 6 Aug 2021 12:51:15 -0400 (EDT)

branch: elpa/with-editor
commit ebf6ee47e4a3a2bcf28d06ccac1b70a8fa5b5efa
Author: Noam Postavsky <npostavs@users.sourceforge.net>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    with-editor-debug: don't run emacsclientw.exe, it makes popup windows
---
 with-editor.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/with-editor.el b/with-editor.el
index 86307f2..0071ccd 100644
--- a/with-editor.el
+++ b/with-editor.el
@@ -762,7 +762,8 @@ See info node `(with-editor)Debugging' for instructions."
     (--each (with-editor-emacsclient-path)
       (insert (format "    %s (%s)\n" it (car (file-attributes it))))
       (when (file-directory-p it)
-        (dolist (exec (directory-files it t "emacsclient"))
+        ;; Don't match emacsclientw.exe, it makes popup windows.
+        (dolist (exec (directory-files it t "emacsclient\\(?:[^w]\\|\\'\\)"))
           (insert (format "      %s (%s)\n" exec
                           (with-editor-emacsclient-version exec))))))))
 



reply via email to

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