emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 3094c12: Fix documentation of mouse-leave-buffer-hook


From: Lars Ingebrigtsen
Subject: master 3094c12: Fix documentation of mouse-leave-buffer-hook
Date: Mon, 19 Jul 2021 10:42:34 -0400 (EDT)

branch: master
commit 3094c12c45a60203052fc1fac1b793b982cdd787
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix documentation of mouse-leave-buffer-hook
    
    * doc/lispref/hooks.texi (Standard Hooks): Ditto.
    
    * src/callint.c (syms_of_callint): Document the actual usage of
    `mouse-leave-buffer-hook' (bug#2932).
---
 doc/lispref/hooks.texi | 2 +-
 src/callint.c          | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/doc/lispref/hooks.texi b/doc/lispref/hooks.texi
index b1c7e61..3949284 100644
--- a/doc/lispref/hooks.texi
+++ b/doc/lispref/hooks.texi
@@ -184,7 +184,7 @@ The command loop runs this soon after 
@code{post-command-hook} (q.v.).
 
 @item mouse-leave-buffer-hook
 @vindex mouse-leave-buffer-hook
-Hook run when about to switch windows with a mouse command.
+Hook run when the user mouse-clicks in a window.
 
 @item mouse-position-function
 @xref{Mouse Position}.
diff --git a/src/callint.c b/src/callint.c
index 1862463..a196210 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -892,7 +892,10 @@ behave as if the mark were still active.  */);
   Vmark_even_if_inactive = Qt;
 
   DEFVAR_LISP ("mouse-leave-buffer-hook", Vmouse_leave_buffer_hook,
-              doc: /* Hook to run when about to switch windows with a mouse 
command.
+              doc: /* Hook run when the user mouse-clicks in a window.
+It can be run both before and after switching windows, or even when
+when not actually switching windows.
+
 Its purpose is to give temporary modes such as Isearch mode
 a way to turn themselves off when a mouse command switches windows.  */);
   Vmouse_leave_buffer_hook = Qnil;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]