aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-09-08 16:58:39 +0000
committerRichard M. Stallman1995-09-08 16:58:39 +0000
commitd473987a4c661029c8fa8a8d9d68e50bee2a7860 (patch)
treeaf3144be5be30a34ae498baaf802c7790bad35f5
parent4a722d6c5368968a4db40222788b786e996ecbc6 (diff)
downloademacs-d473987a4c661029c8fa8a8d9d68e50bee2a7860.tar.gz
emacs-d473987a4c661029c8fa8a8d9d68e50bee2a7860.zip
Fix typos.
-rw-r--r--lispref/commands.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/lispref/commands.texi b/lispref/commands.texi
index 5a21ac37870..e5c01fe952b 100644
--- a/lispref/commands.texi
+++ b/lispref/commands.texi
@@ -721,7 +721,7 @@ are characters or symbols; mouse events are always lists. This section
721describes the representation and meaning of input events in detail. 721describes the representation and meaning of input events in detail.
722 722
723@defun eventp object 723@defun eventp object
724This function returns non-@code{nil} if @var{event} is an input event. 724This function returns non-@code{nil} if @var{object} is an input event.
725@end defun 725@end defun
726 726
727@menu 727@menu
@@ -1275,16 +1275,16 @@ The standard definition of the @code{delete-frame} event is to delete @var{frame
1275@cindex @code{iconify-frame} event 1275@cindex @code{iconify-frame} event
1276@item (iconify-frame (@var{frame})) 1276@item (iconify-frame (@var{frame}))
1277This kind of event indicates that the user iconified @var{frame} using 1277This kind of event indicates that the user iconified @var{frame} using
1278the window manager. Its standard definition is @code{ignore}; since 1278the window manager. Its standard definition is @code{ignore}; since the
1279the frame has already been deiconified, Emacs has no work to do. 1279frame has already been iconified, Emacs has no work to do. The purpose
1280The purpose of this event type is so that you can keep track of such 1280of this event type is so that you can keep track of such events if you
1281events if you want to. 1281want to.
1282 1282
1283@cindex @code{make-frame-visible} event 1283@cindex @code{make-frame-visible} event
1284@item (make-frame-visible (@var{frame})) 1284@item (make-frame-visible (@var{frame}))
1285This kind of event indicates that the user deiconified @var{frame} using 1285This kind of event indicates that the user deiconified @var{frame} using
1286the window manager. Its standard definition is @code{ignore}; since the 1286the window manager. Its standard definition is @code{ignore}; since the
1287frame has already been iconified, Emacs has no work to do. 1287frame has already been made visible, Emacs has no work to do.
1288@end table 1288@end table
1289 1289
1290 If one of these events arrives in the middle of a key sequence---that 1290 If one of these events arrives in the middle of a key sequence---that