diff options
| author | Stefan Monnier | 2009-08-19 03:03:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-08-19 03:03:05 +0000 |
| commit | 03a74b84f850e08f7d981d357ff03135b72f0d18 (patch) | |
| tree | 980d4d2d97454f49efd59ab111d6d25eeeeba247 /doc | |
| parent | e99652b05f7ec1ba5322a03b37cdb36aad74907d (diff) | |
| download | emacs-03a74b84f850e08f7d981d357ff03135b72f0d18.tar.gz emacs-03a74b84f850e08f7d981d357ff03135b72f0d18.zip | |
* subr.el (listify-key-sequence-1): Use normal syntax since those
integers are nowadays always represented by the same (positive) number
on all platforms.
(read-key-empty-map): New const.
(read-key-delay): New var.
(read-key): New function.
(force-mode-line-update): Use with-current-buffer.
(locate-user-emacs-file): Don't forget to abbreviate the file name.
(start-process-shell-command, start-file-process-shell-command):
Discourage the use of command-args.
* processes.texi (Asynchronous Processes): Adjust arglist of
start-process-shell-command and start-file-process-shell-command.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index e07386d8b88..841f4d86c94 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * processes.texi (Asynchronous Processes): Adjust arglist of | ||
| 4 | start-process-shell-command and start-file-process-shell-command. | ||
| 5 | |||
| 1 | 2009-08-15 Chong Yidong <cyd@stupidchicken.com> | 6 | 2009-08-15 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * advice.texi (Argument Access in Advice): Note that argument | 8 | * advice.texi (Argument Access in Advice): Note that argument |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index b80b49f38cb..268cec388d0 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -581,11 +581,10 @@ example @code{ange-ftp-hook-function}). In such cases, the function | |||
| 581 | does nothing and returns @code{nil}. | 581 | does nothing and returns @code{nil}. |
| 582 | @end defun | 582 | @end defun |
| 583 | 583 | ||
| 584 | @defun start-process-shell-command name buffer-or-name command &rest command-args | 584 | @defun start-process-shell-command name buffer-or-name command |
| 585 | This function is like @code{start-process} except that it uses a shell | 585 | This function is like @code{start-process} except that it uses a shell |
| 586 | to execute the specified command. The argument @var{command} is a shell | 586 | to execute the specified command. The argument @var{command} is a shell |
| 587 | command name, and @var{command-args} are the arguments for the shell | 587 | command name. The variable @code{shell-file-name} specifies which shell to |
| 588 | command. The variable @code{shell-file-name} specifies which shell to | ||
| 589 | use. | 588 | use. |
| 590 | 589 | ||
| 591 | The point of running a program through the shell, rather than directly | 590 | The point of running a program through the shell, rather than directly |
| @@ -597,7 +596,7 @@ characters do @emph{not} have their special shell meanings. @xref{Shell | |||
| 597 | Arguments}. | 596 | Arguments}. |
| 598 | @end defun | 597 | @end defun |
| 599 | 598 | ||
| 600 | @defun start-file-process-shell-command name buffer-or-name command &rest command-args | 599 | @defun start-file-process-shell-command name buffer-or-name command |
| 601 | This function is like @code{start-process-shell-command}, but uses | 600 | This function is like @code{start-process-shell-command}, but uses |
| 602 | @code{start-file-process} internally. By this, @var{command} can be | 601 | @code{start-file-process} internally. By this, @var{command} can be |
| 603 | executed also on remote hosts, depending on @code{default-directory}. | 602 | executed also on remote hosts, depending on @code{default-directory}. |