aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/text.texi20
2 files changed, 14 insertions, 10 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 6f27e71b7b7..78d7531f869 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12014-01-28 Glenn Morris <rgm@gnu.org>
2
3 * text.texi (Indent Tabs): Update related to tab-stops.
4
12014-01-24 Glenn Morris <rgm@gnu.org> 52014-01-24 Glenn Morris <rgm@gnu.org>
2 6
3 * control.texi (Handling Errors): Update with-demoted-errors. 7 * control.texi (Handling Errors): Update with-demoted-errors.
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 60cda8068bb..a6e98763d8f 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -2460,19 +2460,19 @@ stop feature only in a few major modes, such as Text mode.
2460 2460
2461@deffn Command tab-to-tab-stop 2461@deffn Command tab-to-tab-stop
2462This command inserts spaces or tabs before point, up to the next tab 2462This command inserts spaces or tabs before point, up to the next tab
2463stop column defined by @code{tab-stop-list}. It searches the list for 2463stop column defined by @code{tab-stop-list}.
2464an element greater than the current column number, and uses that element
2465as the column to indent to. It does nothing if no such element is
2466found.
2467@end deffn 2464@end deffn
2468 2465
2469@defopt tab-stop-list 2466@defopt tab-stop-list
2470This variable is the list of tab stop columns used by 2467This variable defines the tab stop columns used by @code{tab-to-tab-stop}.
2471@code{tab-to-tab-stops}. The elements should be integers in increasing 2468It should be either @code{nil}, or a list of increasing integers,
2472order. The tab stop columns need not be evenly spaced. 2469which need not be evenly spaced. The list is implicitly
2473 2470extended to infinity through repetition of the interval between the
2474Use @kbd{M-x edit-tab-stops} to edit the location of tab stops 2471last and penultimate elements (or @code{tab-width} if the list has
2475interactively. 2472fewer than two elements). A value of @code{nil} means a tab stop
2473every @code{tab-width} columns.
2474
2475Use @kbd{M-x edit-tab-stops} to edit the location of tab stops interactively.
2476@end defopt 2476@end defopt
2477 2477
2478@node Motion by Indent 2478@node Motion by Indent