diff options
| author | Eli Zaretskii | 2013-09-14 12:24:34 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-14 12:24:34 +0300 |
| commit | 0df00f5905b75a5a0601c8696f41c8796c3d1baa (patch) | |
| tree | cb89288606f46b9ca8bf3fb2f6609471760b28a5 /src/buffer.c | |
| parent | d3fc65499a4bf85799eee7996128cd74fea17cce (diff) | |
| download | emacs-0df00f5905b75a5a0601c8696f41c8796c3d1baa.tar.gz emacs-0df00f5905b75a5a0601c8696f41c8796c3d1baa.zip | |
Fix bug #15375 with inaccurate docs of display margin width values.
doc/lispref/display.texi (Display Margins): State the units of measuring
margin width.
src/buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>:
Doc fix.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 0bcb608dbd3..3d7468904f2 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5900,7 +5900,7 @@ See also the functions `display-table-slot' and `set-display-table-slot'. */); | |||
| 5900 | 5900 | ||
| 5901 | DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols), | 5901 | DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols), |
| 5902 | Qintegerp, | 5902 | Qintegerp, |
| 5903 | doc: /* Width of left marginal area for display of a buffer. | 5903 | doc: /* Width in columns of left marginal area for display of a buffer. |
| 5904 | A value of nil means no marginal area. | 5904 | A value of nil means no marginal area. |
| 5905 | 5905 | ||
| 5906 | Setting this variable does not take effect until a new buffer is displayed | 5906 | Setting this variable does not take effect until a new buffer is displayed |
| @@ -5908,7 +5908,7 @@ in a window. To make the change take effect, call `set-window-buffer'. */); | |||
| 5908 | 5908 | ||
| 5909 | DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols), | 5909 | DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols), |
| 5910 | Qintegerp, | 5910 | Qintegerp, |
| 5911 | doc: /* Width of right marginal area for display of a buffer. | 5911 | doc: /* Width in columns of right marginal area for display of a buffer. |
| 5912 | A value of nil means no marginal area. | 5912 | A value of nil means no marginal area. |
| 5913 | 5913 | ||
| 5914 | Setting this variable does not take effect until a new buffer is displayed | 5914 | Setting this variable does not take effect until a new buffer is displayed |