aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-11-25 03:50:53 +0000
committerChong Yidong2008-11-25 03:50:53 +0000
commit4185820cd1b64ca5de6c0da7241def039ced3b46 (patch)
treef50423f119391b326739caee61cd52db84e1c4f3
parente2b7cebbd1a680ec636f64dac5fe35bcf4509f6c (diff)
downloademacs-4185820cd1b64ca5de6c0da7241def039ced3b46.tar.gz
emacs-4185820cd1b64ca5de6c0da7241def039ced3b46.zip
(Transaction Queues): Fix typo.
-rw-r--r--doc/lispref/processes.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index e3bbb88899a..8a7018811c8 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -206,9 +206,9 @@ regular expression @var{separators}, like @code{split-string} does
206the substrings. It then makes a list of the substrings and returns 206the substrings. It then makes a list of the substrings and returns
207it. 207it.
208 208
209If @var{separators} is omitted or nil, it defaults to @code{"\\s-+"}, 209If @var{separators} is omitted or @code{nil}, it defaults to
210which is a regular expression that matches one or more characters with 210@code{"\\s-+"}, which is a regular expression that matches one or more
211whitespace syntax (@pxref{Syntax Class Table}). 211characters with whitespace syntax (@pxref{Syntax Class Table}).
212 212
213The quoting this function supports is of 2 styles: by enclosing a 213The quoting this function supports is of 2 styles: by enclosing a
214whole string in double quotes @code{"@dots{}"}, or by quoting 214whole string in double quotes @code{"@dots{}"}, or by quoting
@@ -1828,8 +1828,8 @@ The argument @var{regexp} is a regular expression that should match
1828text at the end of the entire answer, but nothing before; that's how 1828text 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
1831If the argument @var{delay-question} is non-nil, delay sending this 1831If the argument @var{delay-question} is non-@code{nil}, delay sending
1832question until the process has finished replying to any previous 1832this question until the process has finished replying to any previous
1833questions. This produces more reliable results with some processes. 1833questions. This produces more reliable results with some processes.
1834 1834
1835The return value of @code{tq-enqueue} itself is not meaningful. 1835The return value of @code{tq-enqueue} itself is not meaningful.