branch: elpa/aidermacs
commit ba2d7576c938b708d3bb9671361bcab76e88b298
Author: Mingde (Matthew) Zeng <[email protected]>
Commit: Mingde (Matthew) Zeng <[email protected]>
aidermacs-backend-comint: string should be downcase
Signed-off-by: Mingde (Matthew) Zeng <[email protected]>
---
aidermacs-backend-comint.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/aidermacs-backend-comint.el b/aidermacs-backend-comint.el
index df71a3bbd6..1bdb9818da 100644
--- a/aidermacs-backend-comint.el
+++ b/aidermacs-backend-comint.el
@@ -277,7 +277,7 @@ PROC is the process to send to. STRING is the command to
send."
(aidermacs-reset-font-lock-state)
;; Store the command for tracking in the correct buffer
(with-current-buffer (process-buffer proc)
- (if (member string '("" "y" "n" "d" "yes" "no"))
+ (if (member (downcase string) '("" "y" "n" "d" "yes" "no"))
(aidermacs--parse-output-for-files aidermacs--comint-output-temp)
(setq aidermacs--last-command string)
;; Always prepare for potential edits