aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-27 23:20:52 +0000
committerKim F. Storm2006-07-27 23:20:52 +0000
commitae4bce6790e4b718b87bf8d77e66afcd1d53b037 (patch)
treec72f538e18974215c802be567f8dfe6a7aaf01d7
parentd7fb9e6cd4d647921ceba210289a3d4c7946e1a1 (diff)
downloademacs-ae4bce6790e4b718b87bf8d77e66afcd1d53b037.tar.gz
emacs-ae4bce6790e4b718b87bf8d77e66afcd1d53b037.zip
(Reading One Event): Fix last change.
-rw-r--r--lispref/commands.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/commands.texi b/lispref/commands.texi
index 3c987632a33..10cd97400f8 100644
--- a/lispref/commands.texi
+++ b/lispref/commands.texi
@@ -2220,13 +2220,13 @@ If @code{cursor-in-echo-area} is non-@code{nil}, then @code{read-event}
2220moves the cursor temporarily to the echo area, to the end of any message 2220moves the cursor temporarily to the echo area, to the end of any message
2221displayed there. Otherwise @code{read-event} does not move the cursor. 2221displayed there. Otherwise @code{read-event} does not move the cursor.
2222 2222
2223If @code{seconds} is non-@code{nil}, it should be a number specifying 2223If @var{seconds} is non-@code{nil}, it should be a number specifying
2224the maximum time to wait for input, in seconds. If no input arrives 2224the maximum time to wait for input, in seconds. If no input arrives
2225within that time, @code{read-event} stops waiting and returns 2225within that time, @code{read-event} stops waiting and returns
2226@code{nil}. A floating-point value for @code{seconds} means to wait 2226@code{nil}. A floating-point value for @var{seconds} means to wait
2227for a fractional number of seconds. Some systems support only a whole 2227for a fractional number of seconds. Some systems support only a whole
2228number of seconds; on these systems, @code{seconds} is rounded down. 2228number of seconds; on these systems, @var{seconds} is rounded down.
2229If @code{seconds} is @code{nil}, @code{read-event} waits as long as 2229If @var{seconds} is @code{nil}, @code{read-event} waits as long as
2230necessary for input to arrive. 2230necessary for input to arrive.
2231 2231
2232If @code{read-event} gets an event that is defined as a help character, 2232If @code{read-event} gets an event that is defined as a help character,