Mercurial > emacs
changeset 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 | c584bf36429f |
children | 864c3dea8754 |
files | lisp/comint.el |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Sat Apr 08 20:40:33 1995 +0000 +++ b/lisp/comint.el Sat Apr 08 20:48:07 1995 +0000 @@ -513,6 +513,8 @@ 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.