haskell / haskell/haskell-mode
Protect system processes calls
Open
- Dominant language
- Emacs Lisp
- Stars
- 1.4k
- Forks
- 354
- Avg merge
- 5d 10h
- Merged PRs (30d)
- 2
Description
With the upcoming Emacs 29, system process functions like `list-system-processes` and `process-attributes` work on the remote host when `default-directory` is remote. In order to avoid this, wrap the respective code by
```
(let ((default-directory temporary-file-directory))
...)
```
Contributor guide
Research direction
Search the Emacs Lisp sources for the calls to `list-system-processes` and `process-attributes`, then inspect how `default-directory` is set around them. Verify that both system-process operations use `temporary-file-directory` when the original directory is remote, without changing unrelated process behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- emacs-lisp
- Domain
- devtools
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100