about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-10-04 08:04:34 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-10-04 08:04:34 +0100
commit86b94843735c9b4082ab84b08f36893505a4dd1f (patch)
tree4242b62f58019242acf0818e1f342b62d8672456
parent8f87ca139c225786e3c1670892b1b7ef70f73436 (diff)
downloaddotfiles-86b94843735c9b4082ab84b08f36893505a4dd1f.tar.gz
Apply fix for dabbrev bug until 30.1 is released
-rw-r--r--.emacs.d/lisp/init-completion.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el
index 98fd0fa..e0efdb3 100644
--- a/.emacs.d/lisp/init-completion.el
+++ b/.emacs.d/lisp/init-completion.el
@@ -5,6 +5,9 @@
 ;;; Code:
 
 (use-feature dabbrev
+  ;; Load newer version until 30.1 is released
+  ;; https://mail.gnu.org/archive/html/bug-gnu-emacs/2024-05/msg00422.html
+  :load-path "elpaca/repos/project/lisp/dabbrev.el"
   :custom
   (dabbrev-case-distinction nil)
   (dabbrev-case-fold-search t)