aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorGlenn Morris2018-07-13 09:28:15 -0700
committerGlenn Morris2018-07-13 09:28:15 -0700
commitcda7e1850f2f19a5025fd163ff2c6c6cba275acf (patch)
tree1fdb0014a632e936da813128ead6353051436cbd /lisp/textmodes
parent1013e0392b78ee0e2199fb51859dc9e939315f9b (diff)
parent17ebb6e5ae9cdd2586d1b4d6f2347ae09c6f653f (diff)
downloademacs-cda7e1850f2f19a5025fd163ff2c6c6cba275acf.tar.gz
emacs-cda7e1850f2f19a5025fd163ff2c6c6cba275acf.zip
Merge from origin/emacs-26
17ebb6e (origin/emacs-26) Use consistent function names in thread-tes... 1c86229 Fix format error in Faccept_process_output b38b91a Lessen stack consumption in recursive read1 3eb4603 Match w32 paths in grep sans --null hits (Bug#32051) 5cc7c4b Fix previous make-network-process change d6a1b69 Another documentation improvement in flyspell.el 9b49a8e Improve documentation of Flyspell 3744fda Provide feature 'threads ef9025f Save the server alias on reconnect (Bug#29657) db3874b Refer to "proper lists" instead of "true lists" 35e0305 Avoid turning on the global-minor-mode recursively 51bf4e4 Fix Bug#32085
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/flyspell.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index 8ad6832880a..4d5b11cca89 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -31,10 +31,10 @@
31;; 31;;
32;; To enable Flyspell in text representing computer programs, type 32;; To enable Flyspell in text representing computer programs, type
33;; M-x flyspell-prog-mode. 33;; M-x flyspell-prog-mode.
34;; In that mode only text inside comments is checked. 34;; In that mode only text inside comments and strings is checked.
35;; 35;;
36;; Some user variables control the behavior of flyspell. They are 36;; Some user variables control the behavior of flyspell. They are
37;; those defined under the `User variables' comment. 37;; those defined under the `User configuration' comment.
38 38
39;;; Code: 39;;; Code:
40 40
@@ -137,7 +137,8 @@ This variable specifies how far to search to find such a duplicate.
137(defcustom flyspell-persistent-highlight t 137(defcustom flyspell-persistent-highlight t
138 "Non-nil means misspelled words remain highlighted until corrected. 138 "Non-nil means misspelled words remain highlighted until corrected.
139If this variable is nil, only the most recently detected misspelled word 139If this variable is nil, only the most recently detected misspelled word
140is highlighted." 140is highlighted, and the highlight is turned off as soon as point moves
141off the misspelled word."
141 :group 'flyspell 142 :group 'flyspell
142 :type 'boolean) 143 :type 'boolean)
143 144