emacs-diffs
[Top][All Lists]
Advanced

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

master fdafaf5: Fix min-width end condition handling


From: Lars Ingebrigtsen
Subject: master fdafaf5: Fix min-width end condition handling
Date: Wed, 24 Nov 2021 06:45:01 -0500 (EST)

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

    Fix min-width end condition handling
    
    * src/xdisp.c (handle_display_prop): Fix check for min-width ends
    -- they may be consecutive.
---
 src/xdisp.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/xdisp.c b/src/xdisp.c
index 4d3b487..e8de063 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5340,8 +5340,7 @@ handle_display_prop (struct it *it)
                                           Qdisplay, object, &overlay);
 
   /* Handle min-width ends. */
-  if (! NILP (it->min_width_property)
-      && NILP (find_display_property (propval, Qmin_width)))
+  if (!NILP (it->min_width_property))
     display_min_width (it, bufpos, object, Qnil);
 
   if (NILP (propval))



reply via email to

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