diff man/lispref/commands.texi @ 440:8de8e3f6228a r21-2-28

Import from CVS: tag r21-2-28
author cvs
date Mon, 13 Aug 2007 11:33:38 +0200
parents 3ecd8885ac67
children 576fb035e263
line wrap: on
line diff
--- a/man/lispref/commands.texi	Mon Aug 13 11:32:27 2007 +0200
+++ b/man/lispref/commands.texi	Mon Aug 13 11:33:38 2007 +0200
@@ -1456,7 +1456,7 @@
 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 @@
 
 @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