comparison doc/lispref/processes.texi @ 99909:2b9c924c3d42

(Transaction Queues): Fix typo.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 25 Nov 2008 03:50:53 +0000
parents 524aa1296742
children 1eb416e724bb
comparison
equal deleted inserted replaced
99908:3a3bc9606291 99909:2b9c924c3d42
204 regular expression @var{separators}, like @code{split-string} does 204 regular expression @var{separators}, like @code{split-string} does
205 (@pxref{Creating Strings}), but it additionally removes quoting from 205 (@pxref{Creating Strings}), but it additionally removes quoting from
206 the substrings. It then makes a list of the substrings and returns 206 the substrings. It then makes a list of the substrings and returns
207 it. 207 it.
208 208
209 If @var{separators} is omitted or nil, it defaults to @code{"\\s-+"}, 209 If @var{separators} is omitted or @code{nil}, it defaults to
210 which is a regular expression that matches one or more characters with 210 @code{"\\s-+"}, which is a regular expression that matches one or more
211 whitespace syntax (@pxref{Syntax Class Table}). 211 characters with whitespace syntax (@pxref{Syntax Class Table}).
212 212
213 The quoting this function supports is of 2 styles: by enclosing a 213 The quoting this function supports is of 2 styles: by enclosing a
214 whole string in double quotes @code{"@dots{}"}, or by quoting 214 whole string in double quotes @code{"@dots{}"}, or by quoting
215 individual characters with a backslash escape @samp{\}. The latter is 215 individual characters with a backslash escape @samp{\}. The latter is
216 also used in Lisp strings, so this function can handle those as well. 216 also used in Lisp strings, so this function can handle those as well.
1826 1826
1827 The argument @var{regexp} is a regular expression that should match 1827 The argument @var{regexp} is a regular expression that should match
1828 text at the end of the entire answer, but nothing before; that's how 1828 text at the end of the entire answer, but nothing before; that's how
1829 @code{tq-enqueue} determines where the answer ends. 1829 @code{tq-enqueue} determines where the answer ends.
1830 1830
1831 If the argument @var{delay-question} is non-nil, delay sending this 1831 If the argument @var{delay-question} is non-@code{nil}, delay sending
1832 question until the process has finished replying to any previous 1832 this question until the process has finished replying to any previous
1833 questions. This produces more reliable results with some processes. 1833 questions. This produces more reliable results with some processes.
1834 1834
1835 The return value of @code{tq-enqueue} itself is not meaningful. 1835 The return value of @code{tq-enqueue} itself is not meaningful.
1836 @end defun 1836 @end defun
1837 1837