aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/indent.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c
index c76e6b7b4bd..90d8b1ce8e9 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -983,9 +983,10 @@ If specified column is within a character, point goes after that character.
983If it's past end of line, point goes to end of line. 983If it's past end of line, point goes to end of line.
984 984
985Optional second argument FORCE non-nil means if COLUMN is in the 985Optional second argument FORCE non-nil means if COLUMN is in the
986middle of a tab character, change it to spaces. 986middle of a tab character, either change it to spaces (when
987In addition, if FORCE is t, and the line is too short to reach 987`indent-tabs-mode' is nil), or insert enough spaces before it to reach
988COLUMN, add spaces/tabs to get there. 988COLUMN (otherwise). In addition, if FORCE is t, and the line is too short
989to reach COLUMN, add spaces/tabs to get there.
989 990
990The return value is the current column. */) 991The return value is the current column. */)
991 (Lisp_Object column, Lisp_Object force) 992 (Lisp_Object column, Lisp_Object force)