diff src/dispnew.c @ 57808:a1c4ff636947

(margin_glyphs_to_reserve): Don't use ncols_scale_factor.
author Kim F. Storm <storm@cua.dk>
date Sun, 31 Oct 2004 00:05:18 +0000
parents 6b028bf60b4e
children 59945307b86b 7a0245dd1848 e24e2e78deda
line wrap: on
line diff
--- a/src/dispnew.c	Sun Oct 31 00:04:52 2004 +0000
+++ b/src/dispnew.c	Sun Oct 31 00:05:18 2004 +0000
@@ -579,7 +579,7 @@
       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;