X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=man%2Flispref%2Fcommands.texi;h=d68d1b43f442b92d092304ac63a07f0d746a0f95;hp=9fc3616f8b52eb192f38fca1cd243d2446d66b03;hb=716cfba952c1dc0d2cf5c968971f3780ba728a89;hpb=d74da9234cc42e8018b1500105c3892a5c46d5e3 diff --git a/man/lispref/commands.texi b/man/lispref/commands.texi index 9fc3616..d68d1b4 100644 --- a/man/lispref/commands.texi +++ b/man/lispref/commands.texi @@ -1456,7 +1456,7 @@ and other ways of representing keys. These are useful when working with This function converts a numeric @sc{ascii} value to an event structure, replete with modifier bits. @var{ch} is the character to convert, and @var{event} is the event object to fill in. This function contains -knowledge about what the codes ``mean'' -- for example, the number 9 is +knowledge about what the codes ``mean''---for example, the number 9 is converted to the character @key{Tab}, not the distinct character @key{Control-I}. @@ -1632,13 +1632,13 @@ convenience; it is equivalent to the Lisp code @lisp @group - (while (progn - (next-event event) - (not (or (key-press-event-p event) - (button-press-event-p event) - (button-release-event-p event) - (menu-event-p event)))) - (dispatch-event event)) + (while (progn + (next-event event) + (not (or (key-press-event-p event) + (button-press-event-p event) + (button-release-event-p event) + (menu-event-p event)))) + (dispatch-event event)) @end group @end lisp