]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug #14073 with referencing window total number of columns.
authorEli Zaretskii <eliz@gnu.org>
Thu, 28 Mar 2013 13:45:27 +0000 (15:45 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 28 Mar 2013 13:45:27 +0000 (15:45 +0200)
 src/w32fns.c (Fx_show_tip): Fix compilation error under
 "--enable-check-lisp-object-type".

src/ChangeLog
src/w32fns.c

index fcc8bb5eaa38b7bbeb25359b32f3e2fba803e20d..baa40ffd2378e40936c3f6dfe9ada18735acf2e8 100644 (file)
@@ -3,6 +3,8 @@
        * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
        identify the reasons for assertion violations in bug#14062 and
        similar ones.
+       (Fx_show_tip): Fix compilation error under
+       "--enable-check-lisp-object-type".  (Bug#14073)
 
        * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
        Reported by <rzl24ozi@gmail.com>.
index 02cc2a003384ee48ed9a67d7eae4ccad877a40e0..bb640ffcb8cc4d7079977a135d0491edb09715c5 100644 (file)
@@ -5810,7 +5810,7 @@ Text larger than the specified size is clipped.  */)
       w->total_lines = 40;
     }
 
-  FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
+  FRAME_TOTAL_COLS (f) = WINDOW_TOTAL_COLS (w);
   adjust_glyphs (f);
   w->pseudo_window_p = 1;