From 002f5116a6b2faa97f994cf2a87a6c60f3dad1f7 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 15 Oct 2020 16:12:57 -0400 Subject: [PATCH] Fix #3948: unsetting ligatures w/ set-ligature! --- modules/ui/ligatures/autoload/ligatures.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/ligatures/autoload/ligatures.el b/modules/ui/ligatures/autoload/ligatures.el index 6140d7704..7856ff7c1 100644 --- a/modules/ui/ligatures/autoload/ligatures.el +++ b/modules/ui/ligatures/autoload/ligatures.el @@ -34,7 +34,7 @@ Pretty symbols can be unset for emacs-lisp-mode with: (declare (indent defun)) (if (null (car-safe plist)) (dolist (mode (doom-enlist modes)) - (assq-delete-all mode +ligatures-extra-alist)) + (delq! mode +ligatures-extra-alist 'assq)) (let (results) (while plist (let ((key (pop plist)))