]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fwindow_end): Fix use of >= operator.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 4 Jan 2007 00:19:11 +0000 (00:19 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 4 Jan 2007 00:19:11 +0000 (00:19 +0000)
src/ChangeLog
src/window.c

index 0da6e104cfc9d7a6d436601cfebc7036c4de0996..68baebcebd7244453cd7360d5161223cfbad51a8 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * window.c (Fwindow_end): Fix use of >= operator.
+
 2007-01-03  Richard Stallman  <rms@gnu.org>
 
        * window.c (Fwindow_end): Check BUF_OVERLAY_MODIFF like BUF_MODIFF.
index 2a7b5ef6c684520ee8f234748daa1073559cd5c7..d052a5786dcd3365985fff5c844d63be7bd986e0 100644 (file)
@@ -1183,7 +1183,7 @@ if it isn't already recorded.  */)
   if (! NILP (update)
       && ! (! NILP (w->window_end_valid)
            && XFASTINT (w->last_modified) >= BUF_MODIFF (b)
-           && XFASTINT (w->last_overlay_modified) => BUF_OVERLAY_MODIFF (b))
+           && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (b))
       && !noninteractive)
     {
       struct text_pos startp;