diff options
| author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-11 20:57:56 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-11 21:04:12 +0200 |
| commit | 4d00db5538dc0ef47cf1cdf425b895d04145fe9e (patch) | |
| tree | 6a55b272fb7f682105bb698c3edf0659b8a2d456 /lisp | |
| parent | 97c4d941daffba1635bd738fae9c4ff36e5ad0cf (diff) | |
| download | emacs-4d00db5538dc0ef47cf1cdf425b895d04145fe9e.tar.gz | |
Remove compat code from comint.el
* lisp/comint.el (make-comint-in-buffer): `start-file-process' is
always defined, so remove test.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index df947b93afa..843cba14837 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -735,8 +735,6 @@ contents are sent to the process as its initial input. If PROGRAM is a string, any more args are arguments to PROGRAM. Return the (possibly newly created) process buffer." - (or (fboundp 'start-file-process) - (error "Multi-processing is not supported for this system")) (setq buffer (get-buffer-create (or buffer (concat "*" name "*")))) ;; If no process, or nuked process, crank up a new one and put buffer in ;; comint mode. Otherwise, leave buffer and existing process alone. |
