[elpa] externals/vertico 25e0672: Version 0.11

2021-05-24 Thread Protesilaos Stavrou
branch: externals/vertico
commit 25e0672045753a557afcf09438a4573be7f0db4d
Author: Daniel Mendler 
Commit: Daniel Mendler 

Version 0.11
---
 vertico.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vertico.el b/vertico.el
index 866f858..8f95473 100644
--- a/vertico.el
+++ b/vertico.el
@@ -5,7 +5,7 @@
 ;; Author: Daniel Mendler 
 ;; Maintainer: Daniel Mendler 
 ;; Created: 2021
-;; Version: 0.10
+;; Version: 0.11
 ;; Package-Requires: ((emacs "27.1"))
 ;; Homepage: https://github.com/minad/vertico
 



[elpa] externals/org updated (f72a658 -> c5573bd)

2021-05-24 Thread ELPA Syncer
elpasync pushed a change to branch externals/org.

  from  f72a658   org-plot: Use consistent method to find table
   new  37f69bf   org-refile: Fix double slashes in the refile targets
   new  c5573bd   Merge branch 'maint'


Summary of changes:
 lisp/org-refile.el | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)



[elpa] externals-release/org 37f69bf: org-refile: Fix double slashes in the refile targets

2021-05-24 Thread ELPA Syncer
branch: externals-release/org
commit 37f69bf86dd72ce518c60b6dbbd6afb80a896eeb
Author: Bhavin Gandhi 
Commit: Bastien 

org-refile: Fix double slashes in the refile targets

* org-refile.el (org-refile-get-location): When we generate the `tbl'
variable, we add extra slash depending on the value of
`org-refile-use-outline-path'.  This patch updates some locations which
add another extra slash assuming the target did not have it.

`org-refile--get-location' does lookup for entries with and without
slash, so it was not causing any issues before.  It works as it is now
as well.

Thanks to Gustavo Barros for a very detailed bug report.

TINYCHANGE
---
 lisp/org-refile.el | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/lisp/org-refile.el b/lisp/org-refile.el
index e4f000d..913bec3 100644
--- a/lisp/org-refile.el
+++ b/lisp/org-refile.el
@@ -638,20 +638,18 @@ this function appends the default value from
 (setq old-hist org-refile-history)
 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
nil 'org-refile-history
-   (or cdef (concat (car org-refile-history) extra
+   (or cdef (car org-refile-history
 (if (setq pa (org-refile--get-location answ tbl))
-   (let* ((last-refile-loc (car org-refile-history))
-  (last-refile-loc-path (concat last-refile-loc extra)))
+   (let ((last-refile-loc (car org-refile-history)))
  (org-refile-check-position pa)
  (when (or (not org-refile-history)
(not (eq old-hist org-refile-history))
-   (not (equal (car pa) last-refile-loc-path)))
+   (not (equal (car pa) last-refile-loc)))
(setq org-refile-history
  (cons (car pa) (if (assoc last-refile-loc tbl)
 org-refile-history
   (cdr org-refile-history
-   (when (or (equal last-refile-loc-path (nth 1 org-refile-history))
- (equal last-refile-loc (nth 1 org-refile-history)))
+   (when (equal last-refile-loc (nth 1 org-refile-history))
  (pop org-refile-history)))
  pa)
   (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)



[elpa] externals/org c5573bd: Merge branch 'maint'

2021-05-24 Thread ELPA Syncer
branch: externals/org
commit c5573bdf4c92f05333a0c6e9e6232e86999a70cd
Merge: f72a658 37f69bf
Author: Bastien 
Commit: Bastien 

Merge branch 'maint'
---
 lisp/org-refile.el | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/lisp/org-refile.el b/lisp/org-refile.el
index bffad0a..678759e 100644
--- a/lisp/org-refile.el
+++ b/lisp/org-refile.el
@@ -649,20 +649,18 @@ this function appends the default value from
 (setq old-hist org-refile-history)
 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
nil 'org-refile-history
-   (or cdef (concat (car org-refile-history) extra
+   (or cdef (car org-refile-history
 (if (setq pa (org-refile--get-location answ tbl))
-   (let* ((last-refile-loc (car org-refile-history))
-  (last-refile-loc-path (concat last-refile-loc extra)))
+   (let ((last-refile-loc (car org-refile-history)))
  (org-refile-check-position pa)
  (when (or (not org-refile-history)
(not (eq old-hist org-refile-history))
-   (not (equal (car pa) last-refile-loc-path)))
+   (not (equal (car pa) last-refile-loc)))
(setq org-refile-history
  (cons (car pa) (if (assoc last-refile-loc tbl)
 org-refile-history
   (cdr org-refile-history
-   (when (or (equal last-refile-loc-path (nth 1 org-refile-history))
- (equal last-refile-loc (nth 1 org-refile-history)))
+   (when (equal last-refile-loc (nth 1 org-refile-history))
  (pop org-refile-history)))
  pa)
   (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)



[elpa] externals/company f0caa24: company-echo-metadata-frontend: Reduce blinking with "async" backends

2021-05-24 Thread ELPA Syncer
branch: externals/company
commit f0caa24f20c64dc16624f94ebf6612715ed92f9c
Author: Dmitry Gutov 
Commit: Dmitry Gutov 

company-echo-metadata-frontend: Reduce blinking with "async" backends
---
 company.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/company.el b/company.el
index 7535dde..c89d347 100644
--- a/company.el
+++ b/company.el
@@ -3634,6 +3634,7 @@ Delay is determined by `company-tooltip-idle-delay'."
   "`company-mode' frontend showing the documentation in the echo area."
   (pcase command
 (`post-command (company-echo-show-soon 'company-fetch-metadata))
+(`unhide (company-echo-show))
 (`hide (company-echo-hide
 
 (provide 'company)



[elpa] externals/pyim 06b78f4: * pyim-pinyin.el (pyim-imobjs-find-fuzzy:quanpin-1): declare-function.

2021-05-24 Thread ELPA Syncer
branch: externals/pyim
commit 06b78f420279d1c41ac2fc424b7b3bfb285fc27f
Author: Feng Shu 
Commit: Feng Shu 

* pyim-pinyin.el (pyim-imobjs-find-fuzzy:quanpin-1): declare-function.
---
 pyim-pinyin.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pyim-pinyin.el b/pyim-pinyin.el
index ecfa1cd..7d06dbf 100644
--- a/pyim-pinyin.el
+++ b/pyim-pinyin.el
@@ -108,6 +108,8 @@
 (cons shenmu
   (substring pinyin (length shenmu)
 
+(declare-function 'pyim-imobjs-find-fuzzy:quanpin-1 "pyim-imobj")
+
 (defun pyim-pinyin-get-charpy (pinyin)
   "将拼音字符串 PINYIN 分解成声母,韵母和剩余部分."
   (let* ((x (pyim-pinyin-get-shenmu pinyin))