]> code.delx.au - gnu-emacs/blobdiff - src/window.c
Replace IF_LINT by NONVOLATILE and UNINIT
[gnu-emacs] / src / window.c
index 99a0709d627d40b36cb6e07b945c6f954cd24d7b..fe10241c45cfc3a67bca3b877ddfd0d1d3da9ba4 100644 (file)
@@ -2910,9 +2910,11 @@ window-start value is reasonable when this function is called.  */)
 {
   struct window *w, *r, *s;
   struct frame *f;
-  Lisp_Object sibling, pwindow, swindow IF_LINT (= Qnil), delta;
-  ptrdiff_t startpos IF_LINT (= 0), startbyte IF_LINT (= 0);
-  int top IF_LINT (= 0), new_top;
+  Lisp_Object sibling, pwindow, delta;
+  Lisp_Object swindow UNINIT;
+  ptrdiff_t startpos UNINIT, startbyte UNINIT;
+  int top UNINIT;
+  int new_top;
   bool resize_failed = false;
 
   w = decode_valid_window (window);