mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(make-comint): Error, if start-process is not fboundp.
This commit is contained in:
parent
5b42ec2b00
commit
af37b2e695
1 changed files with 2 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue