comparison man/lispref/commands.texi @ 371:cc15677e0335 r21-2b1

Import from CVS: tag r21-2b1
author cvs
date Mon, 13 Aug 2007 11:03:08 +0200
parents 341dac730539
children 6240c7796c7a
comparison
equal deleted inserted replaced
370:bd866891f083 371:cc15677e0335
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 occurred. 837 A menu item was selected, the scrollbar was used, or a drag or a drop occured.
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 similar button-release event.} 1391 ;; @r{Create a simmilar 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