summary refs log tree commit diff stats
path: root/lisp
diff options
context:
space:
mode:
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