]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-comint): Error, if start-process is not fboundp.
authorRichard M. Stallman <rms@gnu.org>
Sat, 8 Apr 1995 20:48:07 +0000 (20:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 8 Apr 1995 20:48:07 +0000 (20:48 +0000)
lisp/comint.el

index edf8e373022461f05c87834032aa5ea8a0e6324d..de0d63a50dbe8c624a4896341fce5472a7289296 100644 (file)
@@ -513,6 +513,8 @@ running process in that buffer, it is not restarted.  Optional third arg
 STARTFILE is the name of a file to send the contents of to the process.
 
 If PROGRAM is a string, any more args are arguments to PROGRAM."
+  (or (fboundp 'start-process)
+      (error "Multi-processing is not supported for this system"))
   (let ((buffer (get-buffer-create (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.