From 085f074a2fe00648eb407f3b70532282abc1be8e Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 18 Sep 2021 12:53:59 -0400 Subject: [PATCH] * lisp/erc/erc.el: Don't error if erc-loaddefs does not exist. That autoload file is created as part of the Emacs compilation process, however we would like ERC to be usable if used outside emacs.git (e.g. if installed from GNU ELPA). --- lisp/erc/erc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 1f39644f75..7554919720 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -58,7 +58,7 @@ ;;; Code: -(load "erc-loaddefs" nil t) +(load "erc-loaddefs" 'noerror 'nomessage) (require 'cl-lib) (require 'format-spec) -- 2.17.1