summary refs log tree commit diff stats
path: root/lisp
diff options
context:
space:
mode:
authorCase Duckworth2021-09-26 17:12:53 -0500
committerCase Duckworth2021-09-26 17:12:53 -0500
commit0674f69782236041b64086059fc793bac47b6ddb (patch)
treecea08da63e15755f62fc7d1c022be1d6efd455e0 /lisp
parentblehhaheoi (diff)
downloademacs-0674f69782236041b64086059fc793bac47b6ddb.tar.gz
emacs-0674f69782236041b64086059fc793bac47b6ddb.zip
Configure circe
Diffstat (limited to 'lisp')
-rw-r--r--lisp/acdw-irc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/acdw-irc.el b/lisp/acdw-irc.el index 1fc7482..8ec5893 100644 --- a/lisp/acdw-irc.el +++ b/lisp/acdw-irc.el
@@ -71,7 +71,8 @@ and right on t."
71 "Connect to all IRC networks in `circe-network-options'." 71 "Connect to all IRC networks in `circe-network-options'."
72 (interactive) 72 (interactive)
73 (dolist (network (mapcar #'car circe-network-options)) 73 (dolist (network (mapcar #'car circe-network-options))
74 (circe-maybe-connect network))) 74 (unless (member network circe-network-inhibit-autoconnect)
75 (circe-maybe-connect network))))
75 76
76(el-patch-feature circe) 77(el-patch-feature circe)
77(with-eval-after-load 'circe 78(with-eval-after-load 'circe