From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/event-examples.html | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 devdocs/elisp/event-examples.html (limited to 'devdocs/elisp/event-examples.html') diff --git a/devdocs/elisp/event-examples.html b/devdocs/elisp/event-examples.html deleted file mode 100644 index 892103b0..00000000 --- a/devdocs/elisp/event-examples.html +++ /dev/null @@ -1,25 +0,0 @@ -

Event Examples

If the user presses and releases the left mouse button over the same location, that generates a sequence of events like this:

(down-mouse-1 (#<window 18 on NEWS> 2613 (0 . 38) -864320))
-(mouse-1      (#<window 18 on NEWS> 2613 (0 . 38) -864180))
-
-

While holding the control key down, the user might hold down the second mouse button, and drag the mouse from one line to the next. That produces two events, as shown here:

(C-down-mouse-2 (#<window 18 on NEWS> 3440 (0 . 27) -731219))
-(C-drag-mouse-2 (#<window 18 on NEWS> 3440 (0 . 27) -731219)
-                (#<window 18 on NEWS> 3510 (0 . 28) -729648))
-
-

While holding down the meta and shift keys, the user might press the second mouse button on the window’s mode line, and then drag the mouse into another window. That produces a pair of events like these:

(M-S-down-mouse-2 (#<window 18 on NEWS> mode-line (33 . 31) -457844))
-(M-S-drag-mouse-2 (#<window 18 on NEWS> mode-line (33 . 31) -457844)
-                  (#<window 20 on carlton-sanskrit.tex> 161 (33 . 3)
-                   -453816))
-
-

The frame with input focus might not take up the entire screen, and the user might move the mouse outside the scope of the frame. Inside the track-mouse special form, that produces an event like this:

(mouse-movement (#<frame *ielm* 0x102849a30> nil (563 . 205) 532301936))
-
-

To handle a SIGUSR1 signal, define an interactive function, and bind it to the signal usr1 event sequence:

(defun usr1-handler ()
-  (interactive)
-  (message "Got USR1 signal"))
-(global-set-key [signal usr1] 'usr1-handler)
-
-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Event-Examples.html -

-
-- cgit v1.2.3