diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c index ba936509934..4c6dacd2042 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -1995,9 +1995,7 @@ line numbers, `line-number'. */) | |||
| 1995 | line_number_display_width (XWINDOW (selected_window), &width, &pixel_width); | 1995 | line_number_display_width (XWINDOW (selected_window), &width, &pixel_width); |
| 1996 | if (!NILP (pixelwise)) | 1996 | if (!NILP (pixelwise)) |
| 1997 | return make_number (pixel_width); | 1997 | return make_number (pixel_width); |
| 1998 | /* FIXME: The "+ 2" part knows that we add a blank on each side of | 1998 | return make_number (width); |
| 1999 | the line number when producing glyphs for display. */ | ||
| 2000 | return make_number (width + 2); | ||
| 2001 | } | 1999 | } |
| 2002 | 2000 | ||
| 2003 | /* In window W (derived from WINDOW), return x coordinate for column | 2001 | /* In window W (derived from WINDOW), return x coordinate for column |