emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] scratch/line-numbers 13786d5: Exclude blank columns from v


From: Eli Zaretskii
Subject: [Emacs-diffs] scratch/line-numbers 13786d5: Exclude blank columns from value of line-number-display-width
Date: Fri, 7 Jul 2017 10:31:59 -0400 (EDT)

branch: scratch/line-numbers
commit 13786d5e7d0aa0a37d7f81d1a1b82eddd3472796
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Exclude blank columns from value of line-number-display-width
    
    * src/indent.c (Fline_number_display_width): Don't add 2 to the
    number of columns we return, to make this consistent with
    display-line-number-width.
---
 src/indent.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/indent.c b/src/indent.c
index ba93650..4c6dacd 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1995,9 +1995,7 @@ line numbers, `line-number'.  */)
   line_number_display_width (XWINDOW (selected_window), &width, &pixel_width);
   if (!NILP (pixelwise))
     return make_number (pixel_width);
-  /* FIXME: The "+ 2" part knows that we add a blank on each side of
-     the line number when producing glyphs for display.  */
-  return make_number (width + 2);
+  return make_number (width);
 }
 
 /* In window W (derived from WINDOW), return x coordinate for column



reply via email to

[Prev in Thread] Current Thread [Next in Thread]