summaryrefslogtreecommitdiff
path: root/cape.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2025-09-20 10:43:12 +0200
committerDaniel Mendler <mail@daniel-mendler.de>2025-09-20 10:43:12 +0200
commite687d4dbf4a8d07a2f1a19b5ca676828038eff31 (patch)
tree5efa5bc6a743e41a0a026ef74f629eaeee99ffd4 /cape.el
parent97641dcd1ebca1007badd26b2fb9269b86934c22 (diff)
Require Emacs 29
Diffstat (limited to 'cape.el')
-rw-r--r--cape.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/cape.el b/cape.el
index 46de7a6..b4abdd2 100644
--- a/cape.el
+++ b/cape.el
@@ -6,7 +6,7 @@
;; Maintainer: Daniel Mendler <mail@daniel-mendler.de>
;; Created: 2021
;; Version: 2.1
-;; Package-Requires: ((emacs "28.1") (compat "30"))
+;; Package-Requires: ((emacs "29.1") (compat "30"))
;; URL: https://github.com/minad/cape
;; Keywords: abbrev, convenience, matching, completion, text
@@ -1207,9 +1207,7 @@ This function can be used as an advice around an existing Capf."
;;;###autoload
(defun cape-wrap-purify (capf)
"Call CAPF and ensure that it does not illegally modify the buffer.
-This function can be used as an advice around an existing
-Capf. It has been introduced mainly to fix the broken
-`pcomplete-completions-at-point' function in Emacs versions < 29."
+This function can be used as an advice around an existing Capf."
;; bug#50470: Fix Capfs which illegally modify the buffer or which illegally
;; call `completion-in-region'. The workaround here was proposed by
;; @jakanakaevangeli and is used in his capf-autosuggest package. In Emacs 29