Improve documentation of fill-separate-heterogeneous-words-with-space

* lisp/textmodes/fill.el
(fill-separate-heterogeneous-words-with-space): Fix grammar.
This commit is contained in:
Charles A. Roelli 2018-01-10 21:30:43 +01:00
parent 4bd2416d55
commit 80463a43da

View file

@ -50,10 +50,11 @@ A value of nil means that any change in indentation starts a new paragraph."
(put 'colon-double-space 'safe-local-variable 'booleanp) (put 'colon-double-space 'safe-local-variable 'booleanp)
(defcustom fill-separate-heterogeneous-words-with-space nil (defcustom fill-separate-heterogeneous-words-with-space nil
"Non-nil means that use a space to separate words of different kind. "Non-nil means to use a space to separate words of a different kind.
This will be done with a word in the end of a line and a word in the This will be done with a word in the end of a line and a word in
beginning of the next line when concatenating them for filling those the beginning of the next line when concatenating them for
lines. Whether to use a space is up to how the words are categorized." filling those lines. Whether to use a space depends on how the
words are categorized."
:type 'boolean :type 'boolean
:group 'fill :group 'fill
:version "26.1") :version "26.1")