emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#77747: closed ('cursor-face-highlight-mode' signals 'args-out-of-ran


From: GNU bug Tracking System
Subject: bug#77747: closed ('cursor-face-highlight-mode' signals 'args-out-of-range' in narrowed buffer)
Date: Sat, 26 Apr 2025 14:22:02 +0000

Your message dated Sat, 26 Apr 2025 17:21:26 +0300
with message-id <867c37t34p.fsf@gnu.org>
and subject line Re: bug#77747: 'cursor-face-highlight-mode' signals 
'args-out-of-range' in narrowed buffer
has caused the debbugs.gnu.org bug report #77747,
regarding 'cursor-face-highlight-mode' signals 'args-out-of-range' in narrowed 
buffer
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
77747: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77747
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: 'cursor-face-highlight-mode' signals 'args-out-of-range' in narrowed buffer Date: Fri, 11 Apr 2025 11:32:18 -0400
-Q reproducer

;; The culprit appears to be `redisplay--update-cursor-face-highlight'
(setq debug-on-error t)
(cursor-face-highlight-mode)
(save-excursion (insert (propertize "cursor face text\n"
                                    'cursor-face 'region)))
(narrow-to-region (pos-bol) (pos-eol))
(setq unread-command-events (mapcar #'identity
                                    (kbd "C-n")))

-Stephane

--- End Message ---
--- Begin Message --- Subject: Re: bug#77747: 'cursor-face-highlight-mode' signals 'args-out-of-range' in narrowed buffer Date: Sat, 26 Apr 2025 17:21:26 +0300
> From: Ship Mints <shipmints@gmail.com>
> Date: Fri, 25 Apr 2025 15:24:02 -0400
> Cc: 77747@debbugs.gnu.org
> 
> On Fri, Apr 25, 2025 at 2:37 PM Eli Zaretskii <eliz@gnu.org> wrote:
> 
>  > From: Ship Mints <shipmints@gmail.com>
>  > Date: Fri, 25 Apr 2025 12:21:40 -0400
>  > Cc: 77747@debbugs.gnu.org
>  > 
>  > On Fri, Apr 25, 2025 at 10:58 AM Ship Mints <shipmints@gmail.com> wrote:
>  > 
>  >  On Fri, Apr 25, 2025 at 9:51 AM Ship Mints <shipmints@gmail.com> wrote:
>  > 
>  >  On Sun, Apr 13, 2025 at 5:52 AM Eli Zaretskii <eliz@gnu.org> wrote:
>  > 
>  >  > From: Ship Mints <shipmints@gmail.com>
>  >  > Date: Fri, 11 Apr 2025 11:32:18 -0400
>  >  > 
>  >  > -Q reproducer
>  >  > 
>  >  > ;; The culprit appears to be `redisplay--update-cursor-face-highlight'
>  >  > (setq debug-on-error t)
>  >  > (cursor-face-highlight-mode)
>  >  > (save-excursion (insert (propertize "cursor face text\n"
>  >  >                                     'cursor-face 'region)))
>  >  > (narrow-to-region (pos-bol) (pos-eol))
>  >  > (setq unread-command-events (mapcar #'identity
>  >  >                                     (kbd "C-n")))
>  > 
>  >  Thanks, does the below fix it?
>  > 
>  >  diff --git a/lisp/simple.el b/lisp/simple.el
>  >  index ee09a6f..9e9dd15 100644
>  >  --- a/lisp/simple.el
>  >  +++ b/lisp/simple.el
>  >  @@ -7265,7 +7265,7 @@ redisplay--update-cursor-face-highlight
>  >                 (pt (window-point window))
>  >                 (cursor-face (get-text-property pt 'cursor-face)))
>  >           (let* ((start (previous-single-property-change
>  >  -                       (1+ pt) 'cursor-face nil (point-min)))
>  >  +                       (min (1+ pt) (point-min)) 'cursor-face nil 
> (point-min)))
>  >                  (end (next-single-property-change
>  >                        pt 'cursor-face nil (point-max)))
>  >                  (new (redisplay--highlight-overlay-function
>  > 
>  >  Eli, possible to apply the above soon?
>  > 
>  >  Actually, I'm back to thinking this is better or the effect is that the 
> whole buffer can wind up being
>  >  unexpectedly highlighted:
>  > 
>  >                         (min (1+ pt) (pos-bol)) 'cursor-face nil 
> (point-min)))
>  > 
>  > To be clearer:
>  > 
>  > The original condition (1+ pt) 'cursor-face nil (point-min))) works fine 
> in a wide buffer.
>  > 
>  > The condition (min (1+ pt) (point-min)) 'cursor-face nil (point-min))) in 
> a wide buffer winds up
>  highlighting all
>  > the way to point-min in a buffer where every line has 'cursor-face which 
> is undesirable.
> 
>  It should obviously be point-max, not point-min.
> 
> Yeah.  Of course.  Feel free to apply AFAIC.

Done.


--- End Message ---

reply via email to

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