]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of 'line-number-display-width'
authorEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2017 16:17:22 +0000 (19:17 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2017 16:17:22 +0000 (19:17 +0300)
* doc/lispref/display.texi (Size of Displayed Text): Document the
additional 2 columns used for line-number display.

* src/indent.c (Fline_number_display_width): Doc fix.  (Bug#28248)

doc/lispref/display.texi
src/indent.c

index afd09cfb33096cc33b1a07f9c1d71e5f61a6cf99..fbdd810247d18cb070b26bbea970d8df94cd0e37 100644 (file)
@@ -2053,8 +2053,9 @@ This function returns the width used for displaying the line numbers
 in the selected window.  Optional argument @var{pixelwise}, if
 non-@code{nil}, means return the value in pixels; otherwise the value
 is returned in column units of the font defined for the
-@code{line-number} face.  If line numbers are not displayed in the
-selected window, the value is zero.  Use @code{with-selected-window}
+@code{line-number} face, and doesn't include the 2 columns used to pad
+the numbers.  If line numbers are not displayed in the selected
+window, the value is zero.  Use @code{with-selected-window}
 (@pxref{Selecting Windows}) if you need this information about another
 window.
 @end defun
index be8676600a501d3018d5bd448c048a0c3ef751ad..a3e9b5b0b9a924cc017903d014d0bc1b57788f17 100644 (file)
@@ -1993,7 +1993,8 @@ DEFUN ("line-number-display-width", Fline_number_display_width,
        doc: /* Return the width used for displaying line numbers in the selected window.
 If optional argument PIXELWISE is non-nil, return the width in pixels,
 otherwise return the width in columns of the face used to display
-line numbers, `line-number'.  */)
+line numbers, `line-number'.  Note that in the latter case, the value
+doesn't include the 2 columns used for padding the numbers.  */)
   (Lisp_Object pixelwise)
 {
   int width, pixel_width;