comparison man/lispref/commands.texi @ 373:6240c7796c7a r21-2b2

Import from CVS: tag r21-2b2
author cvs
date Mon, 13 Aug 2007 11:04:06 +0200
parents cc15677e0335
children 74fd4e045ea6
comparison
equal deleted inserted replaced
372:49e1ed2d7ed8 373:6240c7796c7a
832 @item motion event 832 @item motion event
833 The pointer was moved. Along with the position of the pointer, these events 833 The pointer was moved. Along with the position of the pointer, these events
834 also specify the modifier keys that were held down at the time. 834 also specify the modifier keys that were held down at the time.
835 835
836 @item misc-user event 836 @item misc-user event
837 A menu item was selected, the scrollbar was used, or a drag or a drop occured. 837 A menu item was selected, the scrollbar was used, or a drag or a drop occurred.
838 838
839 @item process event 839 @item process event
840 Input is available on a process. 840 Input is available on a process.
841 841
842 @item timeout event 842 @item timeout event
1386 (make-event 'button-press `(button 1 modifiers (meta) x ,x y ,y)) 1386 (make-event 'button-press `(button 1 modifiers (meta) x ,x y ,y))
1387 @result{} #<buttondown-event meta-button1> 1387 @result{} #<buttondown-event meta-button1>
1388 @end group 1388 @end group
1389 1389
1390 @group 1390 @group
1391 ;; @r{Create a simmilar button-release event.} 1391 ;; @r{Create a similar button-release event.}
1392 (make-event 'button-release `(button 1 modifiers (meta) x ,x y ,x)) 1392 (make-event 'button-release `(button 1 modifiers (meta) x ,x y ,x))
1393 @result{} #<buttonup-event meta-button1up> 1393 @result{} #<buttonup-event meta-button1up>
1394 @end group 1394 @end group
1395 1395
1396 @group 1396 @group