changeset 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 4b6ff733caa8
children 3ffa48c8d4f0
files src/dispnew.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;