comparison lisp/comint.el @ 11310:3466b44b0a11

(make-comint): Error, if start-process is not fboundp.
author Richard M. Stallman <rms@gnu.org>
date Sat, 08 Apr 1995 20:48:07 +0000
parents 4d2a2fe1d8d7
children 24c19691068e
comparison
equal deleted inserted replaced
11309:c584bf36429f 11310:3466b44b0a11
511 connection to be opened via `open-network-stream'. If there is already a 511 connection to be opened via `open-network-stream'. If there is already a
512 running process in that buffer, it is not restarted. Optional third arg 512 running process in that buffer, it is not restarted. Optional third arg
513 STARTFILE is the name of a file to send the contents of to the process. 513 STARTFILE is the name of a file to send the contents of to the process.
514 514
515 If PROGRAM is a string, any more args are arguments to PROGRAM." 515 If PROGRAM is a string, any more args are arguments to PROGRAM."
516 (or (fboundp 'start-process)
517 (error "Multi-processing is not supported for this system"))
516 (let ((buffer (get-buffer-create (concat "*" name "*")))) 518 (let ((buffer (get-buffer-create (concat "*" name "*"))))
517 ;; If no process, or nuked process, crank up a new one and put buffer in 519 ;; If no process, or nuked process, crank up a new one and put buffer in
518 ;; comint mode. Otherwise, leave buffer and existing process alone. 520 ;; comint mode. Otherwise, leave buffer and existing process alone.
519 (cond ((not (comint-check-proc buffer)) 521 (cond ((not (comint-check-proc buffer))
520 (save-excursion 522 (save-excursion