[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/comint-mime 49ad9a90d3: Quote command to avoid alias ex
From: |
ELPA Syncer |
Subject: |
[elpa] externals/comint-mime 49ad9a90d3: Quote command to avoid alias expansion |
Date: |
Sat, 10 Aug 2024 15:58:01 -0400 (EDT) |
branch: externals/comint-mime
commit 49ad9a90d37163a2e5411f619ea740c7e3960561
Author: Augusto Stoffel <arstoffel@gmail.com>
Commit: Augusto Stoffel <arstoffel@gmail.com>
Quote command to avoid alias expansion
Fixes #22.
---
comint-mime.el | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/comint-mime.el b/comint-mime.el
index 61398e27eb..cb40031ff0 100644
--- a/comint-mime.el
+++ b/comint-mime.el
@@ -240,9 +240,10 @@ from `comint-mode', or interactively after starting the
comint."
(add-hook 'comint-output-filter-functions 'comint-mime-setup-shell nil t)
(remove-hook 'comint-output-filter-functions 'comint-mime-setup-shell t)
(comint-redirect-send-command
- (format " . %s\n" (shell-quote-argument
- (expand-file-name "comint-mime.sh"
- comint-mime-setup-script-dir)))
+ (format " '.' %s\n"
+ (shell-quote-argument
+ (expand-file-name "comint-mime.sh"
+ comint-mime-setup-script-dir)))
nil nil t)))
(push '(shell-mode . comint-mime-setup-shell)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/comint-mime 49ad9a90d3: Quote command to avoid alias expansion,
ELPA Syncer <=