]> git.eshelyaron.com Git - emacs.git/commitdiff
* xdisp.c (decode_mode_spec): Fix sense of test whether Vline_number_display_limit...
authorKen Raeburn <raeburn@raeburn.org>
Fri, 16 Jun 2000 16:06:34 +0000 (16:06 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Fri, 16 Jun 2000 16:06:34 +0000 (16:06 +0000)
src/ChangeLog
src/xdisp.c

index d2ed2280ea0f926ef707f19f314673f359543725..fde27d1fbe348590f92dcbbba599d8c51916ab85 100644 (file)
@@ -1,7 +1,8 @@
 2000-06-16  Ken Raeburn  <raeburn@gnu.org>
 
        * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
-       termination of string.
+       termination of string.  Fix sense of test whether
+       Vline_number_display_limit is an integer.
 
 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
 
index 2e57f62086772a72908caef8ac984a48d5306e8e..5676aa4b245599b584b9f849829ee17f13711345 100644 (file)
@@ -12297,7 +12297,7 @@ decode_mode_spec (w, c, field_width, precision)
          w->base_line_pos = Qnil;
 
        /* If the buffer is very big, don't waste time.  */
-       if (!INTEGERP (Vline_number_display_limit)
+       if (INTEGERP (Vline_number_display_limit)
            && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
          {
            w->base_line_pos = Qnil;