[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master 4162bd4 22/62: Changed name of registered checker
From: |
Ian Dunn |
Subject: |
[elpa] master 4162bd4 22/62: Changed name of registered checker |
Date: |
Sat, 9 Dec 2017 14:33:59 -0500 (EST) |
branch: master
commit 4162bd48d33d82164ac2855b7d9b1e4a33210f23
Author: Ian Dunn <address@hidden>
Commit: Ian Dunn <address@hidden>
Changed name of registered checker
* paced.el (paced-dictionary-key-registered-p): Renamed from
"paced-dictionary-registered-p".
(paced-ensure-registered)
(paced-current-dictionary): Update name.
---
paced.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/paced.el b/paced.el
index 728d0b6..243b61c 100644
--- a/paced.el
+++ b/paced.el
@@ -213,11 +213,11 @@ instead.")
(defsubst paced-read-dictionary ()
(completing-read "Dictionary: " (map-keys paced--registered-dictionaries)))
-(defsubst paced-dictionary-registered-p (key)
+(defsubst paced-dictionary-key-registered-p (key)
(map-contains-key paced--registered-dictionaries key))
(defsubst paced-ensure-registered (key)
- (unless (paced-dictionary-registered-p key)
+ (unless (paced-dictionary-key-registered-p key)
(error "No paced dictionary called '%s' has been registered." key)))
(cl-defmethod paced-dictionary-register ((dict paced-dictionary))
@@ -342,7 +342,7 @@ be skipped."
(while (and conditions
(not dictionary))
(pcase-let* ((`(,condition . ,dict) (pop conditions)))
- (when (and (paced-dictionary-registered-p dict)
+ (when (and (paced-dictionary-key-registered-p dict)
(paced-test-dict-enable-condition condition))
(setq dictionary dict))))
(when dictionary
- [elpa] master 262d99f 13/62: Added package requirements to paced.el, (continued)
- [elpa] master 262d99f 13/62: Added package requirements to paced.el, Ian Dunn, 2017/12/09
- [elpa] master 79c22c2 06/62: Added new customization options for paced-load-all-dictionaries, Ian Dunn, 2017/12/09
- [elpa] master e404950 14/62: Alias if-let* and when-let* for backwards compatibility, Ian Dunn, 2017/12/09
- [elpa] master 6c014ae 15/62: Remove rx pcase form for compatibility, Ian Dunn, 2017/12/09
- [elpa] master ecb2f9d 12/62: Fixed up info title, Ian Dunn, 2017/12/09
- [elpa] master c369964 16/62: Reduce required Emacs version to 25.3, Ian Dunn, 2017/12/09
- [elpa] master de2260f 07/62: Documented the population commands, Ian Dunn, 2017/12/09
- [elpa] master febb200 08/62: Added function to submit a bug report, Ian Dunn, 2017/12/09
- [elpa] master b925c0b 17/62: Updated links in documentation, Ian Dunn, 2017/12/09
- [elpa] master 38979b5 18/62: Fixed up contributing documentation, Ian Dunn, 2017/12/09
- [elpa] master 4162bd4 22/62: Changed name of registered checker,
Ian Dunn <=
- [elpa] master 302d4b4 28/62: Added convenience method for adding population commands, Ian Dunn, 2017/12/09
- [elpa] master 4824306 21/62: Make the registered dictionary map a hash table, Ian Dunn, 2017/12/09
- [elpa] master e751e4f 24/62: Update case-handling slot name in Documentation, Ian Dunn, 2017/12/09
- [elpa] master dada473 19/62: Push of info page, Ian Dunn, 2017/12/09
- [elpa] master 6e7d6d7 29/62: Updated method names in paced-repopulate-dictionary-async, Ian Dunn, 2017/12/09
- [elpa] master ce7a2be 20/62: Changed case-sensitivity to case-handling, Ian Dunn, 2017/12/09
- [elpa] master 35ba53b 26/62: Autoload paced-repopulate-named-dictionary-async, Ian Dunn, 2017/12/09
- [elpa] master 6e8acdf 09/62: Added documentation, Ian Dunn, 2017/12/09
- [elpa] master 0d17d8d 25/62: Warn before resetting dictionary during population, Ian Dunn, 2017/12/09
- [elpa] master 6aefb0b 05/62: Made dictionary names strings, Ian Dunn, 2017/12/09