aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier2009-08-19 03:03:05 +0000
committerStefan Monnier2009-08-19 03:03:05 +0000
commit03a74b84f850e08f7d981d357ff03135b72f0d18 (patch)
tree980d4d2d97454f49efd59ab111d6d25eeeeba247 /doc
parente99652b05f7ec1ba5322a03b37cdb36aad74907d (diff)
downloademacs-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/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 @@
12009-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
12009-08-15 Chong Yidong <cyd@stupidchicken.com> 62009-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
581does nothing and returns @code{nil}. 581does 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
585This function is like @code{start-process} except that it uses a shell 585This function is like @code{start-process} except that it uses a shell
586to execute the specified command. The argument @var{command} is a shell 586to execute the specified command. The argument @var{command} is a shell
587command name, and @var{command-args} are the arguments for the shell 587command name. The variable @code{shell-file-name} specifies which shell to
588command. The variable @code{shell-file-name} specifies which shell to
589use. 588use.
590 589
591The point of running a program through the shell, rather than directly 590The 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
597Arguments}. 596Arguments}.
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
601This function is like @code{start-process-shell-command}, but uses 600This 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
603executed also on remote hosts, depending on @code{default-directory}. 602executed also on remote hosts, depending on @code{default-directory}.