diff options
| author | Glenn Morris | 2019-05-14 17:18:18 -0700 |
|---|---|---|
| committer | Glenn Morris | 2019-05-14 17:18:18 -0700 |
| commit | 5fe9375a5164960c3ecb65a7ef6d742069b8a7d7 (patch) | |
| tree | 315715009d9fe5af40be38cb0dfccecfaf4c5528 /doc/lispref | |
| parent | 0f63e17663f99742425c9ec4f282f5e7e3194b1b (diff) | |
| parent | 02bee7860f7e650ef13e00fe1a7f9a362e3eb001 (diff) | |
| download | emacs-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 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.texi | 8 |
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 | |||
| 2252 | the middle of a multicolumn character such as a tab, point moves to the | 2252 | the middle of a multicolumn character such as a tab, point moves to the |
| 2253 | end of that character. However, if @var{force} is non-@code{nil}, and | 2253 | end 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} |
| 2255 | converts the tab into spaces so that it can move precisely to column | 2255 | either 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. | 2257 | point can move precisely to column @var{column}. Other multicolumn |
| 2258 | characters can cause anomalies despite @var{force}, since there is no | ||
| 2259 | way to split them. | ||
| 2258 | 2260 | ||
| 2259 | The argument @var{force} also has an effect if the line isn't long | 2261 | The argument @var{force} also has an effect if the line isn't long |
| 2260 | enough to reach column @var{column}; if it is @code{t}, that means to | 2262 | enough to reach column @var{column}; if it is @code{t}, that means to |