diff options
| author | Eli Zaretskii | 2001-08-22 18:30:36 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-08-22 18:30:36 +0000 |
| commit | 32f2f98e584fb2ff512e84d3a2c4f8ef6bca365b (patch) | |
| tree | 6a5acef153a3bac6889421f11b0b25f0c7382f36 /lisp | |
| parent | 7fce8d938cecb244890a0981548c10932c6779a1 (diff) | |
| download | emacs-32f2f98e584fb2ff512e84d3a2c4f8ef6bca365b.tar.gz emacs-32f2f98e584fb2ff512e84d3a2c4f8ef6bca365b.zip | |
(line-number-mode): Mention the variable line-number-display-limit-width
in the doc string.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed5a0dd0fdb..b3ed84f1c9e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * simple.el (line-number-mode): Mention the variable | ||
| 4 | line-number-display-limit-width in the doc string. | ||
| 5 | |||
| 1 | 2001-08-22 Gerd Moellmann <gerd@gnu.org> | 6 | 2001-08-22 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * bindings.el (mode-line-unbury-buffer): Add EVENT parameter. | 8 | * bindings.el (mode-line-unbury-buffer): Add EVENT parameter. |
diff --git a/lisp/simple.el b/lisp/simple.el index 2b47497a3e6..832ef806832 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3133,8 +3133,9 @@ With arg, turn Line Number mode on iff arg is positive. | |||
| 3133 | When Line Number mode is enabled, the line number appears | 3133 | When Line Number mode is enabled, the line number appears |
| 3134 | in the mode line. | 3134 | in the mode line. |
| 3135 | 3135 | ||
| 3136 | Line numbers do not appear for very large buffers, see variable | 3136 | Line numbers do not appear for very large buffers and buffers |
| 3137 | `line-number-display-limit'." | 3137 | with very long lines; see variables `line-number-display-limit' |
| 3138 | and `line-number-display-limit-width'." | ||
| 3138 | (interactive "P") | 3139 | (interactive "P") |
| 3139 | (setq line-number-mode | 3140 | (setq line-number-mode |
| 3140 | (if (null arg) (not line-number-mode) | 3141 | (if (null arg) (not line-number-mode) |