branch: externals/compat commit d9643bb45d7a6104d61b5eb5410852ce3de83947 Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Revert 81358f53 (completion-pcm--all-completions) Details on the background are explained by Jonas in https://lists.sr.ht/~pkal/compat-devel/%3C87mtgr4rjs.fsf%40bernoul.li%3E#%3c87lew7251e....@bernoul.li%3E. --- MANUAL | 4 ---- compat-25.el | 7 ------- 2 files changed, 11 deletions(-) diff --git a/MANUAL b/MANUAL index 91cfc3ba53..51b08fe145 100644 --- a/MANUAL +++ b/MANUAL @@ -190,10 +190,6 @@ when ~compat-25~ is required: - Function: compat-sort :: See [[info:elisp#Sequence Functions][(elisp) Sequence Functions]]. Adds support for vectors to be sorted, next to just lists. -- Function: completion-pcm--all-completions :: Defined in - ~minibuffer.el~. - - Reverse the resulting completion list, as fixed by [[debbugs:24676]]. Compat does not provide support for the following Lisp features implemented in 25.1: diff --git a/compat-25.el b/compat-25.el index 60e547db46..b236622714 100644 --- a/compat-25.el +++ b/compat-25.el @@ -339,12 +339,5 @@ recursion." (push (concat dir "/" file) files))))) (nconc result (nreverse files)))) -;;;; Defined in minibuffer.el -;;* UNTESTED -(compat-defun completion-pcm--all-completions (prefix pattern table pred) - "Reverse the resulting list as fixed by bug#24676. -All arguments are passed on to the original function." - :prefix t - (nreverse (completion-pcm--all-completions prefix pattern table pred))) (provide 'compat-25) ;;; compat-25.el ends here