]> git.eshelyaron.com Git - emacs.git/commitdiff
(margin_glyphs_to_reserve): Don't use ncols_scale_factor.
authorKim F. Storm <storm@cua.dk>
Sun, 31 Oct 2004 00:05:18 +0000 (00:05 +0000)
committerKim F. Storm <storm@cua.dk>
Sun, 31 Oct 2004 00:05:18 +0000 (00:05 +0000)
src/dispnew.c

index 903bdaabf3bc94ed088dda4de802ad6567361483..69e495d8d8b0ca5050c58a01e396fc82357a44a3 100644 (file)
@@ -579,7 +579,7 @@ margin_glyphs_to_reserve (w, total_glyphs, margin)
       int width = XFASTINT (w->total_cols);
       double d = max (0, XFLOATINT (margin));
       d = min (width / 2 - 1, d);
-      n = (int) ((double) total_glyphs / width * d) * w->ncols_scale_factor;
+      n = (int) ((double) total_glyphs / width * d);
     }
   else
     n = 0;