aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2019-05-14 17:18:18 -0700
committerGlenn Morris2019-05-14 17:18:18 -0700
commit5fe9375a5164960c3ecb65a7ef6d742069b8a7d7 (patch)
tree315715009d9fe5af40be38cb0dfccecfaf4c5528 /doc/lispref
parent0f63e17663f99742425c9ec4f282f5e7e3194b1b (diff)
parent02bee7860f7e650ef13e00fe1a7f9a362e3eb001 (diff)
downloademacs-5fe9375a5164960c3ecb65a7ef6d742069b8a7d7.tar.gz
emacs-5fe9375a5164960c3ecb65a7ef6d742069b8a7d7.zip
Merge from origin/emacs-26
02bee78 Let dir locals for more specific modes override those from less b1235f9 Improve documentation of Hexl mode 32d1813 Fix description of (move-to-column <n> t) when column <n> is ... 0397b7c ; Fix smtpmail-stream-type docstring 7dab3ee Recognize single quote attribute values in nxml and sgml (Bug... e4cde42 Disable extra display of &#10; in nxml-mode (Bug#32897) ca14dd1 Fix nxml-get-inside (Bug#32003) e7ab351 Fix positioning client buffer as instructed by emacsclient # Conflicts: # lisp/files.el # lisp/textmodes/sgml-mode.el
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/text.texi8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 500df1f8f0d..278bc3c2680 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -2252,9 +2252,11 @@ If it is impossible to move to column @var{column} because that is in
2252the middle of a multicolumn character such as a tab, point moves to the 2252the middle of a multicolumn character such as a tab, point moves to the
2253end of that character. However, if @var{force} is non-@code{nil}, and 2253end of that character. However, if @var{force} is non-@code{nil}, and
2254@var{column} is in the middle of a tab, then @code{move-to-column} 2254@var{column} is in the middle of a tab, then @code{move-to-column}
2255converts the tab into spaces so that it can move precisely to column 2255either converts the tab into spaces (when @code{indent-tabs-mode} is
2256@var{column}. Other multicolumn characters can cause anomalies despite 2256@code{nil}), or inserts enough spaces before it (otherwise), so that
2257@var{force}, since there is no way to split them. 2257point can move precisely to column @var{column}. Other multicolumn
2258characters can cause anomalies despite @var{force}, since there is no
2259way to split them.
2258 2260
2259The argument @var{force} also has an effect if the line isn't long 2261The argument @var{force} also has an effect if the line isn't long
2260enough to reach column @var{column}; if it is @code{t}, that means to 2262enough to reach column @var{column}; if it is @code{t}, that means to