[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/spell-fu 907271a557 03/86: Cleanup: unnecessary 'let' nest
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/spell-fu 907271a557 03/86: Cleanup: unnecessary 'let' nesting |
Date: |
Thu, 7 Jul 2022 12:03:38 -0400 (EDT) |
branch: elpa/spell-fu
commit 907271a557ba250bfc62ced67b5c20f985ab2621
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>
Cleanup: unnecessary 'let' nesting
---
spell-fu.el | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/spell-fu.el b/spell-fu.el
index c1a54d2739..67236da714 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -192,15 +192,17 @@ Argument AFTER, ignore when true."
(defun spell-fu--faces-at-point (pos)
"Add the named faces that the `read-face-name' or `face' property use.
Argument POS return faces at this point."
- (let ((faces nil))
- (let ((faceprop (or (get-char-property pos 'read-face-name)
(get-char-property pos 'face))))
- (cond
- ((facep faceprop)
- (push faceprop faces))
- ((face-list-p faceprop)
- (dolist (face faceprop)
- (if (facep face)
- (push face faces))))))
+ (let
+ ( ;; List of faces to return.
+ (faces nil)
+ (faceprop (or (get-char-property pos 'read-face-name) (get-char-property
pos 'face))))
+ (cond
+ ((facep faceprop)
+ (push faceprop faces))
+ ((face-list-p faceprop)
+ (dolist (face faceprop)
+ (if (facep face)
+ (push face faces)))))
faces))
(defun spell-fu--file-is-older-list (file-test file-list)
- [nongnu] elpa/spell-fu 570ccd84ed 64/86: Fix spell-fu-goto-{next/prev}-error silently failing, (continued)
- [nongnu] elpa/spell-fu 570ccd84ed 64/86: Fix spell-fu-goto-{next/prev}-error silently failing, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu b2da2874f3 67/86: Cleanup: use shorter variable names, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 00af362af3 71/86: Add multiple dictionary support, ELPA Syncer, 2022/07/07
- [nongnu] elpa/spell-fu 2ba65de269 74/86: Cleanup: include all arguments in doc-strings, ELPA Syncer, 2022/07/07
- [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 <=
- [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, 2022/07/07
- [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