From c3351a1cbd6570f858569766d9dfd51d6544be38 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 8 May 2020 23:27:33 +0100 Subject: [PATCH] dot/emacs: Include the turd created by Emacs's ELPA package system. Organization: Straylight/Edgeware From: Mark Wooding Guarded to make sure it doesn't break ancient Emacsen. --- dot/emacs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dot/emacs b/dot/emacs index fe7ef11..7f876e7 100644 --- a/dot/emacs +++ b/dot/emacs @@ -46,6 +46,11 @@ ;; Load some other bits of code. +;; Magic to make ELPA packages work. +(trap +(package-initialize) +) + (maybe-autoload 'cc-mode "cc-mode" nil t) (maybe-autoload 'rexx-mode "rexx-mode" nil t) (maybe-autoload 'cvs-update "pcl-cvs" nil t) -- [mdw]