]> git.eshelyaron.com Git - emacs.git/commitdiff
Two adjustments in window/frame resizing.
authorMartin Rudalics <rudalics@gmx.at>
Wed, 12 Mar 2014 07:28:23 +0000 (08:28 +0100)
committerMartin Rudalics <rudalics@gmx.at>
Wed, 12 Mar 2014 07:28:23 +0000 (08:28 +0100)
* frame.c (x_set_frame_parameters): Always calculate new sizes
pixelwise to avoid potential loss when rounding.
* window.el (fit-frame-to-buffer): Get maximum width from
display's width instead of height.

lisp/ChangeLog
lisp/window.el
src/ChangeLog
src/frame.c

index acc0f016caaa6946ac67600979a1cafd620ab61b..7452455efecb84bfbbc2a2e30b219d6b116078f2 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-12  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (fit-frame-to-buffer): Get maximum width from
+       display's width instead of height.
+
 2014-03-12  Glenn Morris  <rgm@gnu.org>
 
        * desktop.el (desktop-restore-frames)
index afd814839d94fae889a260993bc3cd6bdb7d833a..fc2accebba86a6f7ffc0e3cb459c0fd51d51a166 100644 (file)
@@ -7043,7 +7043,7 @@ FRAME."
                (- (* (nth 2 sizes) char-width) window-extra-width))
               ((numberp max-width)
                (- (* max-width char-width) window-extra-width))
-              (t display-height)))
+              (t display-width)))
             (min-width
              (cond
               ((numberp (nth 3 sizes))
index 2475fd5a1d098bf0c307eb900f3e6773d1c82fd6..013409ff40684de24ca7434e8153367dd5413e53 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-12  Martin Rudalics  <rudalics@gmx.at>
+
+       * frame.c (x_set_frame_parameters): Always calculate new sizes
+       pixelwise to avoid potential loss when rounding.
+
 2014-03-11  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * xfns.c (x_set_mouse_color): Recolor vertical_drag_cursor.
index 2d01c6fecaa3ef394ae61183361cbc408bb3d937..3d0c9d057c6b5612e652ef682094106ec463842c 100644 (file)
@@ -2848,14 +2848,14 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist)
   /* Provide default values for HEIGHT and WIDTH.  */
   width = (f->new_width
           ? (f->new_pixelwise
-             ? (f->new_width / FRAME_COLUMN_WIDTH (f))
-             : f->new_width)
-          : FRAME_COLS (f));
+             ? f->new_width
+             : (f->new_width * FRAME_COLUMN_WIDTH (f)))
+          : FRAME_TEXT_WIDTH (f));
   height = (f->new_height
            ? (f->new_pixelwise
-              ? (f->new_height / FRAME_LINE_HEIGHT (f))
-              : f->new_height)
-           : FRAME_LINES (f));
+              ? f->new_height
+              : (f->new_height * FRAME_LINE_HEIGHT (f)))
+           : FRAME_TEXT_HEIGHT (f));
 
   /* Process foreground_color and background_color before anything else.
      They are independent of other properties, but other properties (e.g.,
@@ -2899,12 +2899,12 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist)
       if (EQ (prop, Qwidth) && RANGED_INTEGERP (0, val, INT_MAX))
         {
           size_changed = 1;
-          width = XFASTINT (val);
+          width = XFASTINT (val) * FRAME_COLUMN_WIDTH (f) ;
         }
       else if (EQ (prop, Qheight) && RANGED_INTEGERP (0, val, INT_MAX))
         {
           size_changed = 1;
-          height = XFASTINT (val);
+          height = XFASTINT (val) * FRAME_LINE_HEIGHT (f);
         }
       else if (EQ (prop, Qtop))
        top = val;
@@ -2986,15 +2986,15 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist)
     Lisp_Object frame;
 
     /* Make this 1, eventually.  */
-    check_frame_size (f, &width, &height, 0);
+    check_frame_size (f, &width, &height, 1);
 
     XSETFRAME (frame, f);
 
     if (size_changed
-        && (width != FRAME_COLS (f)
-            || height != FRAME_LINES (f)
+        && (width != FRAME_TEXT_WIDTH (f)
+            || height != FRAME_TEXT_HEIGHT (f)
             || f->new_height || f->new_width))
-      Fset_frame_size (frame, make_number (width), make_number (height), Qnil);
+      Fset_frame_size (frame, make_number (width), make_number (height), Qt);
 
     if ((!NILP (left) || !NILP (top))
        && ! (left_no_change && top_no_change)