]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix relative-number display with non-nil display-line-number-width
authorEli Zaretskii <eliz@gnu.org>
Fri, 30 Jun 2017 19:48:36 +0000 (22:48 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 30 Jun 2017 19:48:36 +0000 (22:48 +0300)
* src/xdisp.c (maybe_produce_line_number): Don't treat a zero
value of display-line-number-width as acceptable.
Handle the case of 'relative' with display-line-number-width
non-nil and smaller than the absolute line number requires.
Reported by Alex <agrambot@gmail.com>.

src/xdisp.c

index bcd7d33332f5a5f9ff948bccaf34da4b82ca4af7..aeccac2cb16f786ebcdae2884fe7bd8339884c4f 100644 (file)
@@ -20867,26 +20867,23 @@ maybe_produce_line_number (struct it *it)
     {
       if (NATNUMP (Vdisplay_line_number_width))
        it->lnum_width = XFASTINT (Vdisplay_line_number_width);
+
+      /* Max line number to be displayed cannot be more than the one
+        corresponding to the last row of the desired matrix.  */
+      ptrdiff_t max_lnum;
+
+      if (NILP (Vdisplay_line_numbers_current_absolute)
+         && (EQ (Vdisplay_line_numbers, Qrelative)
+             || EQ (Vdisplay_line_numbers, Qvisual)))
+       /* We subtract one more because the current line is always
+          zero in this mode.  */
+       max_lnum = it->w->desired_matrix->nrows - 2;
+      else if (EQ (Vdisplay_line_numbers, Qvisual))
+       max_lnum = it->pt_lnum + it->w->desired_matrix->nrows - 1;
       else
-       {
-         /* Max line number to be displayed cannot be more than
-            the one corresponding to the last row of the desired
-            matrix.  */
-         ptrdiff_t max_lnum;
-
-         if (NILP (Vdisplay_line_numbers_current_absolute)
-             && (EQ (Vdisplay_line_numbers, Qrelative)
-                 || EQ (Vdisplay_line_numbers, Qvisual)))
-           /* We subtract one more because the current line is always
-              zero in this mode.  */
-           max_lnum = it->w->desired_matrix->nrows - 2;
-         else if (EQ (Vdisplay_line_numbers, Qvisual))
-           max_lnum = it->pt_lnum + it->w->desired_matrix->nrows - 1;
-         else
-           max_lnum = this_line + it->w->desired_matrix->nrows - 1 - it->vpos;
-         max_lnum = max (1, max_lnum);
-         it->lnum_width = log10 (max_lnum) + 1;
-       }
+       max_lnum = this_line + it->w->desired_matrix->nrows - 1 - it->vpos;
+      max_lnum = max (1, max_lnum);
+      it->lnum_width = max (it->lnum_width, log10 (max_lnum) + 1);
       eassert (it->lnum_width > 0);
     }
   if (EQ (Vdisplay_line_numbers, Qrelative))