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

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

bug#46176: closed (27.1; Display problem in minibuffer overlay when usin


From: GNU bug Tracking System
Subject: bug#46176: closed (27.1; Display problem in minibuffer overlay when using display property)
Date: Fri, 29 Jan 2021 17:50:02 +0000

Your message dated Fri, 29 Jan 2021 18:49:23 +0100
with message-id <f1cd62d2-4eec-63f3-2aaf-e0e153620d14@posteo.de>
and subject line Wrong example
has caused the debbugs.gnu.org bug report #46176,
regarding 27.1; Display problem in minibuffer overlay when using display 
property
to be marked as done.

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


-- 
46176: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46176
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: 27.1; Display problem in minibuffer overlay when using display property Date: Fri, 29 Jan 2021 18:42:33 +0100 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0
When using an overlay `after-string` which uses the `display` property
the string uses the minibuffer prompt face for some reason:


(minibuffer-with-setup-hook
    (lambda ()
      (overlay-put
       (make-overlay (point-max) (point-max) nil t t)
       'after-string (propertize "world" 'display " minibuffer"
                                 'face 'warning)))
  (read-string "Hello"))


I would expect the string " minibuffer" to be displayed like when using:

(minibuffer-with-setup-hook
    (lambda ()
      (overlay-put
       (make-overlay (point-max) (point-max) nil t t)
       'after-string (propertize " minibuffer" 'face 'warning)))
  (read-string "Hello"))





--- End Message ---
--- Begin Message --- Subject: Wrong example Date: Fri, 29 Jan 2021 18:49:23 +0100 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0
My bad the example was wrong.


--- End Message ---

reply via email to

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