aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles A. Roelli2018-01-10 21:30:43 +0100
committerCharles A. Roelli2018-01-10 21:30:43 +0100
commit80463a43da2f23717400250b054afee243df950c (patch)
tree0585c3961903d2c5a3f6f9134f5820a3f52375ea
parent4bd2416d5519a194a0be1a830dc19400676ac4f7 (diff)
downloademacs-80463a43da2f23717400250b054afee243df950c.tar.gz
emacs-80463a43da2f23717400250b054afee243df950c.zip
Improve documentation of fill-separate-heterogeneous-words-with-space
* lisp/textmodes/fill.el (fill-separate-heterogeneous-words-with-space): Fix grammar.
-rw-r--r--lisp/textmodes/fill.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index ce83ad737b1..8422f0e1dd2 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -50,10 +50,11 @@ A value of nil means that any change in indentation starts a new paragraph."
50(put 'colon-double-space 'safe-local-variable 'booleanp) 50(put 'colon-double-space 'safe-local-variable 'booleanp)
51 51
52(defcustom fill-separate-heterogeneous-words-with-space nil 52(defcustom fill-separate-heterogeneous-words-with-space nil
53 "Non-nil means that use a space to separate words of different kind. 53 "Non-nil means to use a space to separate words of a different kind.
54This will be done with a word in the end of a line and a word in the 54This will be done with a word in the end of a line and a word in
55beginning of the next line when concatenating them for filling those 55the beginning of the next line when concatenating them for
56lines. Whether to use a space is up to how the words are categorized." 56filling those lines. Whether to use a space depends on how the
57words are categorized."
57 :type 'boolean 58 :type 'boolean
58 :group 'fill 59 :group 'fill
59 :version "26.1") 60 :version "26.1")