Mercurial > hg > xemacs-beta
comparison man/lispref/processes.texi @ 5687:965a9ddc915a
Introduce call-process-shell-command from GNU.
Thanks GNU. Used in recent versions of org-mode.
2012-10-13 Mats Lidell <matsl@xemacs.org>
* process.el (call-process-shell-command): New function from GNU.
2012-10-13 Mats Lidell <matsl@xemacs.org>
* lispref/processes.texi (Synchronous Processes): New function
call-process-shell-command.
2012-10-13 Mats Lidell <matsl@xemacs.org>
* automated/process-tests.el: Simple test cases for
call-process-shell-command.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Sat, 13 Oct 2012 01:09:35 +0200 |
parents | 99f8ebc082d9 |
children | 9fae6227ede5 |
comparison
equal
deleted
inserted
replaced
5686:c6b1500299a7 | 5687:965a9ddc915a |
---|---|
305 buffer ; @r{Send output to @code{buffer}.} | 305 buffer ; @r{Send output to @code{buffer}.} |
306 nil ; @r{No redisplay during output.} | 306 nil ; @r{No redisplay during output.} |
307 "-c" command) ; @r{Arguments for the shell.} | 307 "-c" command) ; @r{Arguments for the shell.} |
308 @end group | 308 @end group |
309 @end smallexample | 309 @end smallexample |
310 @end defun | |
311 | |
312 @defun call-process-shell-command command &optional infile destination display &rest args | |
313 This function executes the shell command @var{command} synchronously. | |
314 The final arguments @var{args} are additional arguments to add at the | |
315 end of @var{command}. The other arguments are handled as in | |
316 @code{call-process}. | |
310 @end defun | 317 @end defun |
311 | 318 |
312 @node MS-DOS Subprocesses | 319 @node MS-DOS Subprocesses |
313 @section MS-DOS Subprocesses | 320 @section MS-DOS Subprocesses |
314 | 321 |