From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: York Zhao Newsgroups: gmane.emacs.help Subject: What is the equivalent asynchronous version of `call-process-region' Date: Sat, 16 Jun 2012 00:30:35 -0400 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1339821048 25517 80.91.229.3 (16 Jun 2012 04:30:48 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 16 Jun 2012 04:30:48 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jun 16 06:30:47 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Sfker-00051I-Li for geh-help-gnu-emacs@m.gmane.org; Sat, 16 Jun 2012 06:30:45 +0200 Original-Received: from localhost ([::1]:47572 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sfker-0005FT-7c for geh-help-gnu-emacs@m.gmane.org; Sat, 16 Jun 2012 00:30:45 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:59542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sfkem-0005FN-7Q for help-gnu-emacs@gnu.org; Sat, 16 Jun 2012 00:30:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sfkek-00017m-Mo for help-gnu-emacs@gnu.org; Sat, 16 Jun 2012 00:30:39 -0400 Original-Received: from mail-vb0-f41.google.com ([209.85.212.41]:43640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sfkek-00017Y-Ga for help-gnu-emacs@gnu.org; Sat, 16 Jun 2012 00:30:38 -0400 Original-Received: by vbkv13 with SMTP id v13so2574650vbk.0 for ; Fri, 15 Jun 2012 21:30:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=ESL1QVX14RYw56GCiWBYAn6OzC7joi4nOf7w69ahpLo=; b=vyLn0EvUaTCz0yq/AdAKWef/KH1EySiYI3DoeQ7FnUO3WWlg7JiyuMl8aQ3L2CzFMG XLQgSW9yyvgZNQysjKHoJNqb6pVSYBwzxOFY0xcx3p6s8TBsEyp9RLJ/k8pFbsljHWBr MSEqtyEC/yrr9adGTieKJckgA7GRtxAh8TfiU8ILuNI8Vbu33XyblTg21g8pjev0CQmL hleoXs4A4f84gGUzT4rOchL1/ytYtLfmhUinNt/W/prQlAjHHQj2+h/sxa722ahazVB4 qBZoOoXxSlf1WmylXZcWW9B29szH26CKGfjA7QkWAn8mk7+Rdl9fB7AUaDgPj1i0AGPW K1YQ== Original-Received: by 10.52.28.202 with SMTP id d10mr3353170vdh.39.1339821035918; Fri, 15 Jun 2012 21:30:35 -0700 (PDT) Original-Received: by 10.52.33.45 with HTTP; Fri, 15 Jun 2012 21:30:35 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.212.41 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:85264 Archived-At: Hi there, `start-process' is the asynchronous version of `call-process', and there is a function `call-process-region' to send text in a region to a synchronous process. However I was not able to find the asynchronous version of this function that sends text in a region to an asynchronous process. Does such a function exist in Emacs? If not, how do I send the text in a region to an asynchronous process? Thanks, York