]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve documentation of TAB/SPC indentation
authorEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 18:23:16 +0000 (20:23 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 18:23:16 +0000 (20:23 +0200)
* lisp/indent.el (tab-to-tab-stop):
* src/indent.c (Findent_to): Mention 'indent-tabs-mode' in doc
strings.

lisp/indent.el
src/indent.c

index c7ec5c9a3ed29f474f1e000b4ab0171708ccc68e..6b575a86b5e51e360614734b8c276d83f05f402d 100644 (file)
@@ -784,7 +784,8 @@ If PREV is non-nil, return the previous one instead."
 (defun tab-to-tab-stop ()
   "Insert spaces or tabs to next defined tab-stop column.
 The variable `tab-stop-list' is a list of columns at which there are tab stops.
-Use \\[edit-tab-stops] to edit them interactively."
+Use \\[edit-tab-stops] to edit them interactively.
+Whether this inserts tabs or spaces depends on `indent-tabs-mode'."
   (interactive)
   (and abbrev-mode (= (char-syntax (preceding-char)) ?w)
        (expand-abbrev))
index 4671ccccf90d3ac640f9118f891e4f54c4a8810e..66edaff67de0b2014fc1f3aee11de7c852a54139 100644 (file)
@@ -887,6 +887,8 @@ DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ",
 Optional second argument MINIMUM says always do at least MINIMUM spaces
 even if that goes past COLUMN; by default, MINIMUM is zero.
 
+Whether this uses tabs or spaces depends on `indent-tabs-mode'.
+
 The return value is the column where the insertion ends.  */)
   (Lisp_Object column, Lisp_Object minimum)
 {