diff options
| author | Yuuki Harano | 2021-05-05 19:00:37 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-05-05 19:00:37 +0900 |
| commit | 5b97b98daa7f61311c3662beecbeca7037505992 (patch) | |
| tree | fc86c0a5fd61fdbd97451eae10ff081f2293eb86 /src/buffer.c | |
| parent | 704b765eaaee82176e26ab084c26d65311fd46d3 (diff) | |
| parent | 58b0bcd16df83d914fe4d538e6be88cac9574906 (diff) | |
| download | emacs-5b97b98daa7f61311c3662beecbeca7037505992.tar.gz emacs-5b97b98daa7f61311c3662beecbeca7037505992.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index 9e417bf555c..df302db0e52 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5673,9 +5673,12 @@ Linefeed indents to this column in Fundamental mode. */); | |||
| 5673 | DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width), | 5673 | DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width), |
| 5674 | Qintegerp, | 5674 | Qintegerp, |
| 5675 | doc: /* Distance between tab stops (for display of tab characters), in columns. | 5675 | doc: /* Distance between tab stops (for display of tab characters), in columns. |
| 5676 | NOTE: This controls the display width of a TAB character, and not | 5676 | This controls the width of a TAB character on display. |
| 5677 | the size of an indentation step. | 5677 | The value should be a positive integer. |
| 5678 | This should be an integer greater than zero. */); | 5678 | Note that this variable doesn't necessarily affect the size of the |
| 5679 | indentation step. However, if the major mode's indentation facility | ||
| 5680 | inserts one or more TAB characters, this variable will affect the | ||
| 5681 | indentation step as well, even if `indent-tabs-mode' is non-nil. */); | ||
| 5679 | 5682 | ||
| 5680 | DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil, | 5683 | DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil, |
| 5681 | doc: /* Non-nil means display control chars with uparrow. | 5684 | doc: /* Non-nil means display control chars with uparrow. |