]> git.eshelyaron.com Git - emacs.git/commitdiff
Ensure positive number of glyphs for margins of positive width
authorEli Zaretskii <eliz@gnu.org>
Fri, 15 Jan 2016 15:36:47 +0000 (17:36 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 15 Jan 2016 15:36:47 +0000 (17:36 +0200)
* src/dispnew.c (margin_glyphs_to_reserve): Always return a
positive value when a non-zero width of the marginal area was
requested.  (Bug#22356)

src/dispnew.c

index 8d671f82e476892e0504984fdf4032582424c1d1..3e1557fa3b947bbc6a752e680deaf0fdc4e7686f 100644 (file)
@@ -320,7 +320,9 @@ margin_glyphs_to_reserve (struct window *w, int total_glyphs, int margin)
       int width = w->total_cols;
       double d = max (0, margin);
       d = min (width / 2 - 1, d);
-      return (int) ((double) total_glyphs / width * d);
+      /* Since MARGIN is positive, we cannot possibly have less than
+        one glyph for the marginal area.  */
+      return max (1, (int) ((double) total_glyphs / width * d));
     }
   return 0;
 }