]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor cleanup in widget.c
authorKonstantin Kharlamov <Hi-Angel@yandex.ru>
Tue, 2 Apr 2019 20:49:58 +0000 (23:49 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 5 Apr 2019 07:15:46 +0000 (10:15 +0300)
* src/widget.c (update_wm_hints): Remove variables that are
always zero, and simplify all expressions which used them.
(Bug#35062)

src/widget.c

index c695bd5f305e3c7843d1a967271f451ee5da1e5f..508974dd46ff67b048dafdb52ea1e079cf683a87 100644 (file)
@@ -297,7 +297,6 @@ update_wm_hints (EmacsFrame ew)
   int char_height;
   int base_width;
   int base_height;
-  int min_rows = 0, min_cols = 0;
 
   /* This happens when the frame is just created.  */
   if (! wmshell) return;
@@ -323,8 +322,8 @@ update_wm_hints (EmacsFrame ew)
                 XtNbaseHeight, (XtArgVal) base_height,
                 XtNwidthInc, (XtArgVal) (frame_resize_pixelwise ? 1 : cw),
                 XtNheightInc, (XtArgVal) (frame_resize_pixelwise ? 1 : ch),
-                XtNminWidth, (XtArgVal) (base_width + min_cols * cw),
-                XtNminHeight, (XtArgVal) (base_height + min_rows * ch),
+                XtNminWidth, (XtArgVal) base_width,
+                XtNminHeight, (XtArgVal) base_height,
                 NULL);
 }