aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReuben Thomas2016-12-04 13:55:31 +0000
committerReuben Thomas2016-12-13 19:43:48 +0000
commit028249ebcd0287026c61b41b82eb489eec7e0097 (patch)
tree1f0f724dc80807191c800eb6c58f20466c331e56
parent51d011d6bbc0bc03bb41893037d41b19f9ff014d (diff)
downloademacs-028249ebcd0287026c61b41b82eb489eec7e0097.tar.gz
emacs-028249ebcd0287026c61b41b82eb489eec7e0097.zip
Generalise over-specific documentation
* lisp/textmodes/ispell.el (ispell-personal-dictionary): Rather than document precise personal wordlist filenames for only two supported spelling checkers, simply say that the default personal dictionary depends on the chosen spelling checker. The user can check the spelling checker’s documentation if necessary. This is simpler, and works for other supported (and future, or unknown) spelling checkers.
-rw-r--r--lisp/textmodes/ispell.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 462cb32f521..5ad7d05e2cd 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -349,9 +349,7 @@ window system by evaluating the following on startup to set this variable:
349;;;###autoload 349;;;###autoload
350(defcustom ispell-personal-dictionary nil 350(defcustom ispell-personal-dictionary nil
351 "File name of your personal spelling dictionary, or nil. 351 "File name of your personal spelling dictionary, or nil.
352If nil, the default personal dictionary, (\"~/.ispell_DICTNAME\" for ispell or 352If nil, the default personal dictionary for your spelling checker is used."
353\"~/.aspell.LANG.pws\" for Aspell) is used, where DICTNAME is the name of your
354default dictionary and LANG the two letter language code."
355 :type '(choice file 353 :type '(choice file
356 (const :tag "default" nil)) 354 (const :tag "default" nil))
357 :group 'ispell) 355 :group 'ispell)