"git@git.gitsec.cn:baidan/SigNoz.git" did not exist on "e0be48a5278438fa5673795398347af5b9f3280d"
Commit bad2acf6 authored by Stas Boukarev's avatar Stas Boukarev
Browse files

Don't reload contribs each time a lisp starts up.

parent 8c48d59c
Showing with 1 addition and 2 deletions
+1 -2
......@@ -128,8 +128,7 @@ CONTRIBS is a list of contrib packages to load. If `nil', use
(defun slime--setup-contribs ()
"Load and initialize contribs."
(dolist (c slime-contribs)
(unless (and (featurep c)
(memq c slime-required-modules))
(unless (featurep c)
(require c)
(let ((init (intern (format "%s-init" c))))
(when (fboundp init)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment