From 6dc375a8916bbf83be071df7cce63bf76b9a6ed7 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 24 May 2018 19:12:36 +0200 Subject: [PATCH] Fix catch-all text-mode entry in auto-mode-alist This indirectly fixes an issue where the elfeed db was opened in text-mode, triggering the large-file check. --- core/core-editor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-editor.el b/core/core-editor.el index b4984600d..491c50001 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -70,7 +70,7 @@ fundamental-mode) for performance sake." ;; Built-in plugins ;; -(push '("/[A-Z]+$" . text-mode) auto-mode-alist) +(push '("/LICENSE\\'" . text-mode) auto-mode-alist) (electric-indent-mode -1) ; enabled by default in Emacs 25+. No thanks.