[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/spell-fu 1e6928f77d 05/86: Cleanup: add message for genera
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/spell-fu 1e6928f77d 05/86: Cleanup: add message for generating cache, some comments |
Date: |
Thu, 7 Jul 2022 12:03:38 -0400 (EDT) |
branch: elpa/spell-fu
commit 1e6928f77d094902b9b4249286775a1a8442adb0
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>
Cleanup: add message for generating cache, some comments
---
spell-fu.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/spell-fu.el b/spell-fu.el
index 08f30874c8..8e407cfa58 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -238,8 +238,8 @@ Argument WORDS-FILE the file to write the word list into."
(spell-fu--file-is-older words-file ispell-personal-dictionary))))
(when (or (not has-words-file) is-dict-outdated)
- (message "Generating %S" words-file)
+ (message "Generating words %S" words-file)
(with-temp-buffer
;; Optional: insert personal dictionary, stripping header and
inserting a newline.
(when has-dict-personal
@@ -251,7 +251,9 @@ Argument WORDS-FILE the file to write the word list into."
(unless (eq ?\n (char-after))
(insert "\n")))
+ ;; TODO: make dictionary configurable.
(call-process (executable-find "aspell") nil t nil "-d" "en_US" "dump"
"master")
+
;; Case insensitive sort is important if this is used for
`ispell-complete-word-dict'.
;; Which is a handy double-use for this file.
(let ((sort-fold-case t))
@@ -268,6 +270,8 @@ Argument WORDS-FILE the file to write the word list into."
The resulting cache is returned as a minor optimization for first-time loading,
where we need to create this data in order to write it,
save some time by not spending time reading it back."
+
+ (message "Generating cache %S" cache-file)
(let ((word-table nil))
(with-temp-buffer
(insert-file-contents-literally words-file)
- [nongnu] elpa/spell-fu 4782667d7b 76/86: Fail gracefully with a message when aspell can't be found, (continued)
- [nongnu] elpa/spell-fu 4782667d7b 76/86: Fail gracefully with a message when aspell can't be found, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 3a19836c69 78/86: Cleanup: use brief SPDX license, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 1698c51740 79/86: Store a list of hashes instead of symbol lookups for each word, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 47d92c1989 84/86: Fix wrong function name for multiple languages example, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 2590ee3002 80/86: Cleanup: remove cl-remove-if-not, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 1299bfca2e 85/86: Merge pull request 'Fix wrong function name for multiple languages example' (#27) from kepi/emacs-spell-fu:master into master, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 907271a557 03/86: Cleanup: unnecessary 'let' nesting, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 3898e6f591 04/86: Cleanup: remove use of exception handling, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu ae4504f14d 07/86: Fix using hard coded en_US dictionary, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu f2b7d58e87 08/86: Cleanup: correct comment, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 1e6928f77d 05/86: Cleanup: add message for generating cache, some comments,
ELPA Syncer <=
- [nongnu] elpa/spell-fu bd76cb262e 15/86: Avoid 2x loops over the pending screen overlays, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 4f9732492c 01/86: Initial code., ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 6a7440044e 19/86: Cleanup: rename variables to make the assignment explicit, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 5915e0ae2a 24/86: Cleanup: use safer sharp-quoted function names, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 3f4fc34204 32/86: Add 'spell-fu-buffer' utility, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu ddad489f2c 43/86: Adds affix dict support via aspell expand cmd, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu ce64f4bc4d 51/86: Cleanup: remove arguments that are always fixed, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 1b765f8029 58/86: Cleanup: replace setq with let binding, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 1159eeec13 63/86: Fix including trailing single-quote in the word, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 32fcbd9e8e 68/86: Initial changes for multiple dictionaries, ELPA Syncer, 2022/07/07