From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pete Ley Newsgroups: gmane.emacs.help Subject: Re: Help with async-shell-command Date: Tue, 04 Feb 2014 21:00:11 -0800 Message-ID: <87fvny17dw.fsf@enterprise.sectorq.net> References: <87k3da1m04.fsf@enterprise.sectorq.net> <871tzis6i4.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1391576442 23822 80.91.229.3 (5 Feb 2014 05:00:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 5 Feb 2014 05:00:42 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Thorsten Jolitz Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Feb 05 06:00:50 2014 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 1WAubQ-00073Q-8y for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Feb 2014 06:00:48 +0100 Original-Received: from localhost ([::1]:57383 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAubP-0003rH-FM for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Feb 2014 00:00:47 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAub8-0003r8-6t for help-gnu-emacs@gnu.org; Wed, 05 Feb 2014 00:00:38 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WAuaz-0006RU-PN for help-gnu-emacs@gnu.org; Wed, 05 Feb 2014 00:00:30 -0500 Original-Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:57241) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAuaz-0006RQ-Hn for help-gnu-emacs@gnu.org; Wed, 05 Feb 2014 00:00:21 -0500 Original-Received: by mail-pd0-f170.google.com with SMTP id p10so9171915pdj.29 for ; Tue, 04 Feb 2014 21:00:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=pgSiSgKje0eSlJ/zC1XDBiqPlcEcXwkJTKF0kF6oAL0=; b=c4ghj4/m+z+SXJHMshiR9q/xkyz60WmVW+LnCmOf7B9zCBjnjJy1taHLjxPz/FjCoO lX6zbT9ekVhWx+p5pL7JnkyAnPZAN8e5nHyqHFOZ0mpvQ4qQ+IIqgBPaeEoP6IZM/+9G FDVSSwI/8RnapAXKIZav8JdfhUdFV89F0t7wV3wbpCfK7SXF1zfjzYuUbT8SmqEB1d62 iTzj5pTJ7xl0bbP8vxHG/z3zSDmXZ23GLHEdXpkMLVcNr+eZwSBVeeOxSJPULSD0B1vu IHNY9dNUEwUFK/MN4G1/f5F84gynlnY+fHRZLn7FPswneqNhj+9pJmzpaY+6NtxrHuEJ //YQ== X-Received: by 10.68.14.130 with SMTP id p2mr48897358pbc.17.1391576420338; Tue, 04 Feb 2014 21:00:20 -0800 (PST) Original-Received: from enterprise.sectorq.net (75-175-25-218.ptld.qwest.net. [75.175.25.218]) by mx.google.com with ESMTPSA id xn12sm186573653pac.12.2014.02.04.21.00.18 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 04 Feb 2014 21:00:19 -0800 (PST) In-Reply-To: <871tzis6i4.fsf@gmail.com> (Thorsten Jolitz's message of "Wed, 05 Feb 2014 02:17:07 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c02::22a 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:95919 Archived-At: Thorsten Jolitz writes: > ,-------------------------------------------------------------------------- > | start-process is a built-in function in `C source code'. > | > | (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) > | > | Start a program in a subprocess. Return the process object for it. > | NAME is name for process. It is modified if necessary to make it unique. > | BUFFER is the buffer (or buffer name) to associate with the process. > | > | Process output (both standard output and standard error streams) goes > | at end of BUFFER, unless you specify an output stream or filter > | function to handle the output. BUFFER may also be nil, meaning that > | this process is not associated with any buffer. > `-------------------------------------------------------------------------- Perfect! Exactly what I'm looking for.