aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorGlenn Morris2021-05-04 07:50:25 -0700
committerGlenn Morris2021-05-04 07:50:25 -0700
commit6a030deb3d5213d0b32a4d2d6b6e7839ce85b5fa (patch)
tree7051062bb188115b249d95928373500bf754092d /src/buffer.c
parentb8f88d76ea79b12d600a090f76cea9d6ec3818f2 (diff)
parent101a049f551b4013e54fdef0d87a74ec5dfd05e0 (diff)
downloademacs-6a030deb3d5213d0b32a4d2d6b6e7839ce85b5fa.tar.gz
emacs-6a030deb3d5213d0b32a4d2d6b6e7839ce85b5fa.zip
Merge from origin/emacs-27
101a049f55 Improve doc string of 'tab-width'. 43c154404e * lisp/emacs-lisp/elp.el: Doc fixes. 1984213f62 * lisp/emacs-lisp/pp.el: Doc fixes. 6486c9dc73 * admin/make-tarball.txt: Note to update more files on web...
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c9
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.
5676NOTE: This controls the display width of a TAB character, and not 5676This controls the width of a TAB character on display.
5677the size of an indentation step. 5677The value should be a positive integer.
5678This should be an integer greater than zero. */); 5678Note that this variable doesn't necessarily affect the size of the
5679indentation step. However, if the major mode's indentation facility
5680inserts one or more TAB characters, this variable will affect the
5681indentation 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.