diff options
author | Case Duckworth | 2021-09-26 17:21:47 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-26 17:21:47 -0500 |
commit | 6bfdb8d254bc4884d500892608fe86808d9736b2 (patch) | |
tree | e1df81943c9510d4ebc0c4464394f5e60063804c /lisp | |
parent | Correct simple-modeline--format for right fringe (diff) | |
parent | Merge branch 'main' of tildegit.org:acdw/emacs (diff) | |
download | emacs-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.el | 3 |
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 |