aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-06-20 07:54:44 +0000
committerEli Zaretskii2001-06-20 07:54:44 +0000
commit43f971ab20d136ad9529331c0a9913cde30cf003 (patch)
tree0a60df91a94d93192be2c9e6de86f95c2cdbbf9b
parent01c2f7d0e6a5a37aba3b1816c7b842b96bda1af3 (diff)
downloademacs-43f971ab20d136ad9529331c0a9913cde30cf003.tar.gz
emacs-43f971ab20d136ad9529331c0a9913cde30cf003.zip
(Optional Mode Line): Document line-number-display-limit-width.
-rw-r--r--man/display.texi16
1 files changed, 13 insertions, 3 deletions
diff --git a/man/display.texi b/man/display.texi
index 9580f0269bd..024c6c824d7 100644
--- a/man/display.texi
+++ b/man/display.texi
@@ -666,13 +666,23 @@ before the buffer percentage @var{pos}, with the letter @samp{L} to
666indicate what it is. @xref{Minor Modes}, for more information about 666indicate what it is. @xref{Minor Modes}, for more information about
667minor modes and about how to use this command. 667minor modes and about how to use this command.
668 668
669@cindex narrowing, and line number display
670 If you have narrowed the buffer (@pxref{Narrowing}), the displayed
671line number is relative to the accessible portion of the buffer.
672
669@vindex line-number-display-limit 673@vindex line-number-display-limit
670 If the buffer is very large (larger than the value of 674 If the buffer is very large (larger than the value of
671@code{line-number-display-limit}), then the line number doesn't appear. 675@code{line-number-display-limit}), then the line number doesn't appear.
672Emacs doesn't compute the line number when the buffer is large, because 676Emacs doesn't compute the line number when the buffer is large, because
673that would be too slow. Set it to @code{nil} to remove the limit. If 677that would be too slow. Set it to @code{nil} to remove the limit.
674you have narrowed the buffer (@pxref{Narrowing}), the displayed line 678
675number is relative to the accessible portion of the buffer. 679@vindex line-number-display-limit-width
680 Line-number computation can also be slow if the lines in the buffer
681are too long. For this reason, Emacs normally doesn't display line
682numbers if the average width, in characters, of lines near point is
683larger than the value of the variable
684@code{line-number-display-limit-width}. The default value is 200
685characters.
676 686
677@cindex Column Number mode 687@cindex Column Number mode
678@cindex mode, Column Number 688@cindex mode, Column Number