]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove compat code from comint.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 11 Aug 2020 18:57:56 +0000 (20:57 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 11 Aug 2020 19:04:12 +0000 (21:04 +0200)
* lisp/comint.el (make-comint-in-buffer): `start-file-process' is
always defined, so remove test.

lisp/comint.el

index df947b93afadb4701fdef6985aea9f4c6103a160..843cba148370e5d2b6ebe428db6f96c2fb5d489e 100644 (file)
@@ -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.