[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/spell-fu 8412ba02df 03/21: Cleanup: use `zerop`
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/spell-fu 8412ba02df 03/21: Cleanup: use `zerop` |
Date: |
Sat, 7 Jan 2023 07:12:27 -0500 (EST) |
branch: elpa/spell-fu
commit 8412ba02df32562a2f6d254e2aba5d4be1461237
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>
Cleanup: use `zerop`
---
spell-fu.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/spell-fu.el b/spell-fu.el
index 7dddfb7d8e..c5a06ff788 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -1306,7 +1306,7 @@ Argument DICT-FILE is the absolute path to the
dictionary."
;; So we can use line count as word count.
(while
(and
- (eq 0 (forward-line -1))
+ (zerop (forward-line -1))
(string-blank-p
(buffer-substring-no-properties (line-beginning-position)
(line-end-position))))
(delete-region
@@ -1356,7 +1356,7 @@ Argument DICT-FILE is the absolute path to the
dictionary."
(line-beginning-position)
(line-end-position))
word))
- (setq keep-searching (eq 0 (forward-line 1)))))
+ (setq keep-searching (zerop (forward-line 1)))))
(insert word "\n")
@@ -1372,7 +1372,7 @@ Argument DICT-FILE is the absolute path to the
dictionary."
(goto-char word-point)
(delete-region
(line-beginning-position)
- (or (and (eq 0 (forward-line 1)) (point)) (line-end-position)))
+ (or (and (zerop (forward-line 1)) (point))
(line-end-position)))
(message "\"%s\" successfully removed!" word)
(setq changed t))
- [nongnu] elpa/spell-fu 57a678a3c4 07/21: Cleanup: sharp-quote function, (continued)
- [nongnu] elpa/spell-fu 57a678a3c4 07/21: Cleanup: sharp-quote function, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu f62b6d3770 12/21: Cleanup: doc-string length, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu be719051a6 13/21: readme: note when reset may be needed, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu f0d49dcc5a 16/21: Cleanup: emacs native format, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu d0e67cdb25 06/21: When using jit-lock-stealth, ensure words out of the view are checked, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 341575b1d0 10/21: Adding spell-fu-debug variable & spell-fu-reset command, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu bddea99f9c 17/21: Fix #36: byte compilation error with Emacs 28.2, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 68d33508ef 04/21: Add support for buffer local word-lists, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu b89bfe035d 20/21: Cleanup: correct typo in description, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 0dc0568186 11/21: Update doc-string and readme for spell-fu-faces-exclude, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 8412ba02df 03/21: Cleanup: use `zerop`,
ELPA Syncer <=
- [nongnu] elpa/spell-fu 95e005969d 09/21: Cleanup: replace 'if' with 'cond', ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 635c5c2eed 19/21: Cleanup: sharp-quote function, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 38f4a4a275 08/21: Fix #31: Failure to detect updated symlinked dictionaries, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 89b014194a 18/21: Cleanup: emacs native format (update), ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 39549871c7 15/21: Cleanup: format, ELPA Syncer, 2023/01/07
- [nongnu] elpa/spell-fu 3caf7047ea 21/21: Rename functions & variables that used a global- prefix, ELPA Syncer, 2023/01/07