summary refs log tree commit diff stats
path: root/lisp
diff options
context:
space:
mode:
authorCase Duckworth2021-09-26 17:21:47 -0500
committerCase Duckworth2021-09-26 17:21:47 -0500
commit6bfdb8d254bc4884d500892608fe86808d9736b2 (patch)
treee1df81943c9510d4ebc0c4464394f5e60063804c /lisp
parentCorrect simple-modeline--format for right fringe (diff)
parentMerge branch 'main' of tildegit.org:acdw/emacs (diff)
downloademacs-6bfdb8d254bc4884d500892608fe86808d9736b2.tar.gz
emacs-6bfdb8d254bc4884d500892608fe86808d9736b2.zip
Merge branch 'main' of https://tildegit.org/acdw/emacs
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