summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-08-19 03:03:05 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-08-19 03:03:05 +0000
commit03a74b84f850e08f7d981d357ff03135b72f0d18 (patch)
tree980d4d2d97454f49efd59ab111d6d25eeeeba247 /doc
parente99652b05f7ec1ba5322a03b37cdb36aad74907d (diff)
downloademacs-03a74b84f850e08f7d981d357ff03135b72f0d18.tar.gz
* 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/ChangeLog5
-rw-r--r--doc/lispref/processes.texi7
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 @@
+2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * processes.texi (Asynchronous Processes): Adjust arglist of
+ start-process-shell-command and start-file-process-shell-command.
+
2009-08-15 Chong Yidong <cyd@stupidchicken.com>
* 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
does nothing and returns @code{nil}.
@end defun
-@defun start-process-shell-command name buffer-or-name command &rest command-args
+@defun start-process-shell-command name buffer-or-name command
This function is like @code{start-process} except that it uses a shell
to execute the specified command. The argument @var{command} is a shell
-command name, and @var{command-args} are the arguments for the shell
-command. The variable @code{shell-file-name} specifies which shell to
+command name. The variable @code{shell-file-name} specifies which shell to
use.
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
Arguments}.
@end defun
-@defun start-file-process-shell-command name buffer-or-name command &rest command-args
+@defun start-file-process-shell-command name buffer-or-name command
This function is like @code{start-process-shell-command}, but uses
@code{start-file-process} internally. By this, @var{command} can be
executed also on remote hosts, depending on @code{default-directory}.