]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename hook
authorJimmy Aguilar Mena <spacibba@aol.com>
Sun, 13 Mar 2022 20:35:48 +0000 (21:35 +0100)
committerJimmy Aguilar Mena <spacibba@aol.com>
Sun, 13 Mar 2022 20:35:48 +0000 (21:35 +0100)
* lisp/simple.el (redisplay--update-cursor-property-highlight) : Renamed
to redisplay--update-cursor-property-highlight

lisp/simple.el

index cc356addb9730ad822a24b674fa061e542682e13..e20719f7a0f28390af9a5d7d441552106d5378a3 100644 (file)
@@ -6537,7 +6537,7 @@ The overlay is returned by the function.")
         (unless (equal new rol)
           (set-window-parameter window 'internal-region-overlay new))))))
 
-(defun redisplay--update-cursor-property-highlight (window)
+(defun redisplay--update-cursor-face-highlight (window)
   "This highlights the overlay used to highlight text with cursor-face."
   (let ((rol (window-parameter window 'internal-cursor-face-overlay))
         (pt) (value) (cursor-face))
@@ -6556,7 +6556,7 @@ The overlay is returned by the function.")
       (if rol
           (redisplay-unhighlight-overlay-function rol)))))
 
-(defvar pre-redisplay-functions (list #'redisplay--update-cursor-property-highlight
+(defvar pre-redisplay-functions (list #'redisplay--update-cursor-face-highlight
                                       #'redisplay--update-region-highlight)
   "Hook run just before redisplay.
 It is called in each window that is to be redisplayed.  It takes one argument,