emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 39e7697 2/2: Merge commit '47ad7156de07301a7cb77e067713be3


From: Ian Dunn
Subject: [elpa] master 39e7697 2/2: Merge commit '47ad7156de07301a7cb77e067713be3e6979fa75'
Date: Mon, 5 Feb 2018 20:54:46 -0500 (EST)

branch: master
commit 39e7697177f60635a2b9f5bb1c03fc9a8fd40e6a
Merge: f579348 47ad715
Author: Ian Dunn <address@hidden>
Commit: Ian Dunn <address@hidden>

    Merge commit '47ad7156de07301a7cb77e067713be3e6979fa75'
---
 packages/paced/paced-async.el | 12 +++----
 packages/paced/paced.el       |  6 ++--
 packages/paced/paced.info     | 82 +++++++++++++++++++++++++------------------
 packages/paced/paced.org      |  6 +++-
 4 files changed, 61 insertions(+), 45 deletions(-)

diff --git a/packages/paced/paced-async.el b/packages/paced/paced-async.el
index 97c7de1..a0d5382 100644
--- a/packages/paced/paced-async.el
+++ b/packages/paced/paced-async.el
@@ -7,9 +7,9 @@
 ;; Keywords: convenience, completion
 ;; Package-Requires: ((emacs "25.1") (async "1.9.1"))
 ;; URL: https://savannah.nongnu.org/projects/paced-el/
-;; Version: 1.1
+;; Version: 1.1.1
 ;; Created: 22 Jan 2017
-;; Modified: 04 Feb 2018
+;; Modified: 05 Feb 2018
 
 ;; This file is part of GNU Emacs.
 
@@ -92,8 +92,7 @@ Population commands are stored in the field of the same name.
 Note that this will empty the dictionary's contents."
   (interactive
    (list (paced-read-dictionary)))
-  (paced-ensure-registered key)
-  (let ((dict (paced-named-dictionary key)))
+  (paced-operate-on-named-dictionary key
     (paced-dictionary-repopulate-async dict)))
 
 ;;;###autoload
@@ -104,9 +103,8 @@ Population commands are stored in the field of the same 
name.
 
 Note that this will empty the dictionary's contents."
   (interactive)
-  (if-let* ((dict (paced-current-dictionary)))
-      (paced-dictionary-repopulate-async dict)
-    (error "No current dictionary found")))
+  (paced-operate-on-current-dictionary
+   (paced-dictionary-repopulate-async dict)))
 
 (provide 'paced-async)
 
diff --git a/packages/paced/paced.el b/packages/paced/paced.el
index 79fe483..5fd81ba 100644
--- a/packages/paced/paced.el
+++ b/packages/paced/paced.el
@@ -7,9 +7,9 @@
 ;; Keywords: convenience, completion
 ;; Package-Requires: ((emacs "25.1") (async "1.9.1"))
 ;; URL: https://savannah.nongnu.org/projects/paced-el/
-;; Version: 1.1
+;; Version: 1.1.1
 ;; Created: 22 Jan 2017
-;; Modified: 04 Feb 2018
+;; Modified: 05 Feb 2018
 
 ;; This file is part of GNU Emacs.
 
@@ -438,7 +438,7 @@ dictionary conditions."
     (when dictionary
       (paced-named-dictionary dictionary))))
 
-(defvar paced-throw-error-on-no-current t
+(defvar paced-throw-error-on-no-current nil
   "Whether to throw an error when no current dictionary can be
 found.")
 
diff --git a/packages/paced/paced.info b/packages/paced/paced.info
index 7ab606e..7f05c01 100644
--- a/packages/paced/paced.info
+++ b/packages/paced/paced.info
@@ -67,6 +67,7 @@ Contributing
 
 Changelog
 
+* 1.1.1: 111.
 * 1.1: 11.
 * 1.0.1: 101.
 * 1.0: 10.
@@ -883,12 +884,24 @@ Changelog
 
 * Menu:
 
+* 1.1.1: 111.
 * 1.1: 11.
 * 1.0.1: 101.
 * 1.0: 10.
 
 
-File: paced.info,  Node: 11,  Next: 101,  Up: Changelog
+File: paced.info,  Node: 111,  Next: 11,  Up: Changelog
+
+1.1.1
+=====
+
+   • Fixed bug with asynchronous population throwing an error on no
+     dictionary
+
+   • Set ‘paced-throw-error-on-no-current’ to nil by default
+
+
+File: paced.info,  Node: 11,  Next: 101,  Prev: 111,  Up: Changelog
 
 1.1
 ===
@@ -929,39 +942,40 @@ Initial release.
 
 Tag Table:
 Node: Top228
-Node: Copying1971
-Node: Introduction2790
-Node: Similar Packages3910
-Node: pabbrev4196
-Node: predictive5339
-Node: Installation6387
-Node: Basic Setup7049
-Node: Dictionaries7664
-Node: Creating a Dictionary8137
-Node: Editing a Dictionary9177
-Node: Selective Dictionaries9653
-Node: Dictionary Files11391
-Node: Printing a Dictionary12512
-Node: Population Commands13034
-Node: Built-in Commands13970
-Node: Properties14767
-Node: Custom Commands15765
-Node: Asynchronous Population18492
-Node: Example Setups19941
-Node: Org Agenda Files20242
-Node: Project Files22002
-Node: Markdown Files23138
-Node: Repopulating Dictionary After Saving24763
-Node: Repopulating Dictionary After Spellchecking the Buffer25691
-Node: Contributing26436
-Node: Bugs27210
-Node: Development27599
-Node: Documentation29360
-Node: Working with EDE29827
-Node: Changelog30870
-Node: 1131006
-Node: 10131601
-Node: 1031809
+Node: Copying1985
+Node: Introduction2804
+Node: Similar Packages3924
+Node: pabbrev4210
+Node: predictive5353
+Node: Installation6401
+Node: Basic Setup7063
+Node: Dictionaries7678
+Node: Creating a Dictionary8151
+Node: Editing a Dictionary9191
+Node: Selective Dictionaries9667
+Node: Dictionary Files11405
+Node: Printing a Dictionary12526
+Node: Population Commands13048
+Node: Built-in Commands13984
+Node: Properties14781
+Node: Custom Commands15779
+Node: Asynchronous Population18506
+Node: Example Setups19955
+Node: Org Agenda Files20256
+Node: Project Files22016
+Node: Markdown Files23152
+Node: Repopulating Dictionary After Saving24777
+Node: Repopulating Dictionary After Spellchecking the Buffer25705
+Node: Contributing26450
+Node: Bugs27224
+Node: Development27613
+Node: Documentation29374
+Node: Working with EDE29841
+Node: Changelog30884
+Node: 11131034
+Node: 1131261
+Node: 10131868
+Node: 1032076
 
 End Tag Table
 
diff --git a/packages/paced/paced.org b/packages/paced/paced.org
index 8a6e54e..678651a 100644
--- a/packages/paced/paced.org
+++ b/packages/paced/paced.org
@@ -734,6 +734,11 @@ and letting one of us handle it is a good way to go.
 :PROPERTIES:
 :DESCRIPTION: List of changes by version
 :END:
+** 1.1.1
+- Fixed bug with asynchronous population throwing an error on no dictionary
+
+- Set ~paced-throw-error-on-no-current~ to nil by default
+
 ** 1.1
 - Cleaned up the code to reflect the "operation triad"
   - -OP, OP-on-named, OP-on-current
@@ -745,7 +750,6 @@ and letting one of us handle it is a good way to go.
 - Added the option to limit the words added during population by size
 
 - Various documentation improvements
-
 ** 1.0.1
 Bug fix release
 - Save dictionaries right after they're created



reply via email to

[Prev in Thread] Current Thread [Next in Thread]