From b4faf3c3e6c87766ebb86fb40c4abf41f6a6b3c9 Mon Sep 17 00:00:00 2001 From: brotzeit Date: Thu, 6 Jan 2022 23:47:39 +0100 Subject: [PATCH] pass :file-handler to make-process in rustic-cargo-outdated and rustic-create-project close #338 --- rustic-cargo.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rustic-cargo.el b/rustic-cargo.el index 26c845f2..95559a46 100644 --- a/rustic-cargo.el +++ b/rustic-cargo.el @@ -274,7 +274,8 @@ Execute process in PATH." :buffer buf :command '("cargo" "outdated" "--depth" "1") :filter #'rustic-cargo-outdated-filter - :sentinel #'rustic-cargo-outdated-sentinel) + :sentinel #'rustic-cargo-outdated-sentinel + :file-handler t) (with-current-buffer buf (setq default-directory dir) (erase-buffer) @@ -443,7 +444,8 @@ BIN is not nil, create a binary application, otherwise a library." (make-process :name proc :buffer buf :command (list (rustic-cargo-bin) cmd bin project-path) - :sentinel new-sentinel))) + :sentinel new-sentinel + :file-handler t))) ;;;###autoload (defun rustic-cargo-new (project-path &optional bin)