diff options
| author | Glenn Morris | 2021-04-25 09:16:09 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-04-25 09:16:09 -0700 |
| commit | 6dabbddb5fc2a605bd23b3460d791b8e63bcf8f7 (patch) | |
| tree | 77bbc2a404b34b8f3a1d733fa64ececabb3d358c /lisp/textmodes | |
| parent | 6f9180ecb6cc681fdc55ec7cea80c5d9140e152c (diff) | |
| parent | 7d5b973959d2ab056f685996ca156bf42b742dc6 (diff) | |
| download | emacs-6dabbddb5fc2a605bd23b3460d791b8e63bcf8f7.tar.gz emacs-6dabbddb5fc2a605bd23b3460d791b8e63bcf8f7.zip | |
Merge from origin/emacs-27
7d5b973959 (origin/emacs-27) * doc/misc/cl.texi (For Clauses): Minor ...
4570781f8d ; * doc/lispref/files.texi (Directory Names): Add missing ...
1b52fd538d Minor update for make-tarball.txt
8efb8491b2 * doc/misc/cl.texi (Iteration Clauses): fix `never' clause...
0873134682 ; Fix Texinfo in last change to minibuf.texi.
cad8913c89 Improve filling-related documentation
2b7eed23eb ; * doc/lispref/keymaps.texi (Easy Menu): Fix typo.
47fc92cefc Fix reference to "yanking" in the main Emacs manual
1789dcdb35 Improve documentation of 'map-y-or-n-p'
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/fill.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 61514d6761b..3914bdeb83e 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -49,10 +49,12 @@ A value of nil means that any change in indentation starts a new paragraph." | |||
| 49 | 49 | ||
| 50 | (defcustom fill-separate-heterogeneous-words-with-space nil | 50 | (defcustom fill-separate-heterogeneous-words-with-space nil |
| 51 | "Non-nil means to use a space to separate words of a different kind. | 51 | "Non-nil means to use a space to separate words of a different kind. |
| 52 | This will be done with a word in the end of a line and a word in | 52 | For example, when an English word at the end of a line and a CJK word |
| 53 | the beginning of the next line when concatenating them for | 53 | at the beginning of the next line are joined into a single line, they |
| 54 | filling those lines. Whether to use a space depends on how the | 54 | will be separated by a space if this variable is non-nil. |
| 55 | words are categorized." | 55 | Whether to use a space to separate such words also depends on the entry |
| 56 | in `fill-nospace-between-words-table' for the characters before and | ||
| 57 | after the newline." | ||
| 56 | :type 'boolean | 58 | :type 'boolean |
| 57 | :version "26.1") | 59 | :version "26.1") |
| 58 | 60 | ||