diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-03-05 17:39:28 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-03-05 17:41:32 +0100 |
| commit | 23ca151dd41c95ce41956a0483aefee4a92b07ea (patch) | |
| tree | 991e028094b965542f8cda1b9c0803d60c6e9f3a | |
| parent | 6d4d151fd0ced0eb9b8ccd5e96c4e6cfb8f8c556 (diff) | |
Update comment
| -rw-r--r-- | cape.el | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -856,10 +856,11 @@ If the prefix is long enough, enforce auto completion." ;;;###autoload (defun cape-wrap-purify (capf) "Call CAPF and ensure that it does not modify the buffer." - ;; bug#50470: Fix Capfs which illegally modify the buffer or which - ;; illegally call `completion-in-region'. The workaround here has been - ;; proposed @jakanakaevangeli in bug#50470 and is used in - ;; @jakanakaevangeli's capf-autosuggest package. + ;; 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 + ;; the purity bug of Pcomplete has been fixed, such that make + ;; `cape-wrap-purify' is not necessary anymore. (catch 'cape--illegal-completion-in-region (condition-case nil (let ((buffer-read-only t) |
