From d17c675665cacf6fbc7aaeb281cdde3ba233fdeb Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 20 Dec 2010 14:16:28 +0000 Subject: [PATCH] el/dot-emacs.el: Load ERC configuration in advance. Organization: Straylight/Edgeware From: Mark Wooding --- el/dot-emacs.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index b5bdfd0..8b6618d 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -358,6 +358,9 @@ (let ((path exec-path)) (setenv "REAL_MOVEMAIL" try)) (setq path (cdr path))))) +(eval-after-load "erc" + '(load "~/.ercrc.el")) + ;;;-------------------------------------------------------------------------- ;;; Utility functions. -- [mdw]