]> git.eshelyaron.com Git - emacs.git/commitdiff
Tiny clarification for markers.texi
authorGlenn Morris <rgm@gnu.org>
Wed, 7 Mar 2012 08:33:11 +0000 (00:33 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 7 Mar 2012 08:33:11 +0000 (00:33 -0800)
* doc/lispref/markers.texi (The Mark):
Tiny clarification re command loop and activate-mark-hook.

doc/lispref/ChangeLog
doc/lispref/markers.texi

index d2bda41eb03b9d71f113fcd59e7c4db2b87f4a30..42ec24fac5f0cb3cf11e35777657ea65a387f645 100644 (file)
@@ -1,8 +1,9 @@
 2012-03-07  Glenn Morris  <rgm@gnu.org>
 
-       * markers.texi (The Region):
-       Briefly mention use-empty-active-region and region-active-p.
+       * markers.texi (The Region): Briefly mention use-empty-active-region
+       and region-active-p.
        (Overview of Markers): Reword garbage collection, add cross-ref.
+       (The Mark): Tiny clarification re command loop and activate-mark-hook.
 
 2012-03-07  Chong Yidong  <cyd@gnu.org>
 
index b199dba979a9bae9394619beff18c8caaea7f98e..25a9fc88fc5a1528a81706c699f8900b87ee59b1 100644 (file)
@@ -595,8 +595,16 @@ the function @code{use-region-p} for that (@pxref{The Region}).
 @defvarx deactivate-mark-hook
 These normal hooks are run, respectively, when the mark becomes active
 and when it becomes inactive.  The hook @code{activate-mark-hook} is
-also run at the end of a command if the mark is active and it is
-possible that the region may have changed.
+also run at the end of the command loop if the mark is active and it
+is possible that the region may have changed.
+@ignore
+This piece of command_loop_1, run unless deactivating the mark:
+  if (current_buffer != prev_buffer || MODIFF != prev_modiff)
+    {
+      Lisp_Object hook = intern ("activate-mark-hook");
+      Frun_hooks (1, &hook);
+    }
+@end ignore
 @end defvar
 
 @defun handle-shift-selection