diff options
| author | Eli Zaretskii | 2022-12-27 20:23:16 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2022-12-27 20:23:16 +0200 |
| commit | 8b8b79156798b4ffa791e9a9f0262a5ffdc867e8 (patch) | |
| tree | 1921e4b5b84ae7a17936c1d5207a32a26ac165eb /src | |
| parent | 624e3822110a94ff6bee2ffaf43a04271b5d7305 (diff) | |
| download | emacs-8b8b79156798b4ffa791e9a9f0262a5ffdc867e8.tar.gz emacs-8b8b79156798b4ffa791e9a9f0262a5ffdc867e8.zip | |
; Improve documentation of TAB/SPC indentation
* lisp/indent.el (tab-to-tab-stop):
* src/indent.c (Findent_to): Mention 'indent-tabs-mode' in doc
strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/indent.c b/src/indent.c index 4671ccccf90..66edaff67de 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -887,6 +887,8 @@ DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", | |||
| 887 | Optional second argument MINIMUM says always do at least MINIMUM spaces | 887 | Optional second argument MINIMUM says always do at least MINIMUM spaces |
| 888 | even if that goes past COLUMN; by default, MINIMUM is zero. | 888 | even if that goes past COLUMN; by default, MINIMUM is zero. |
| 889 | 889 | ||
| 890 | Whether this uses tabs or spaces depends on `indent-tabs-mode'. | ||
| 891 | |||
| 890 | The return value is the column where the insertion ends. */) | 892 | The return value is the column where the insertion ends. */) |
| 891 | (Lisp_Object column, Lisp_Object minimum) | 893 | (Lisp_Object column, Lisp_Object minimum) |
| 892 | { | 894 | { |