From 679615899df56c772a00d40b3c87be2d2747cf80 Mon Sep 17 00:00:00 2001 From: Benjamin Andresen Date: Sat, 24 Jun 2017 20:23:38 +0200 Subject: [PATCH 1/2] app/irc: one place +irc-connections var wasn't updated it's now handled in circe-network-options --- modules/app/irc/autoload/irc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/app/irc/autoload/irc.el b/modules/app/irc/autoload/irc.el index 347c4171a..388410492 100644 --- a/modules/app/irc/autoload/irc.el +++ b/modules/app/irc/autoload/irc.el @@ -21,7 +21,7 @@ If INHIBIT-WORKSPACE (the universal argument) is non-nil, don't spawn a new workspace for it." (interactive "P") (and (+irc-setup-wconf inhibit-workspace) - (cl-loop for network in +irc-connections + (cl-loop for network in circe-network-options collect (circe (car network))))) ;;;###autoload From ca3184b685756b9212921bd3cd184d29e3cd95e5 Mon Sep 17 00:00:00 2001 From: Benjamin Andresen Date: Sat, 24 Jun 2017 20:24:20 +0200 Subject: [PATCH 2/2] app/irc: get rid of non-interactive #'end-of-buffer warning --- modules/app/irc/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/app/irc/config.el b/modules/app/irc/config.el index fdde7bf4b..63d84c31a 100644 --- a/modules/app/irc/config.el +++ b/modules/app/irc/config.el @@ -149,7 +149,7 @@ playback.") "Ensure entering insert mode will put us at the prompt, unless editing after prompt marker." (when (> (marker-position lui-input-marker) (point)) - (end-of-buffer))) + (goto-char (point-max)))) (add-hook! 'lui-mode-hook (add-hook 'evil-insert-state-entry-hook #'+irc|evil-insert nil t)))